1.0.0 • Published 3 years ago

swedbank-pay-js v1.0.0

Weekly downloads
8
License
MIT
Repository
-
Last release
3 years ago

Swedbank Pay Node.js Library

The Swedbank Pay Node library provides convenient access to the Swedbank Pay API from applications written in server-side JavaScript.

Please keep in mind that this package is for use with server-side Node that uses Payex access token.

Installation

Install the package with:

yarn add swedbank-pay-js

Usage

The package needs to be configured with your account's access token which is available in your Swedbank Pay Admin portal. Require it with the key's value:

const SwedbankPay = require('swedbank-pay-js')
const swedbankPay = new SwedbankPay('token')

const payment = await swedbankPay.payment.create({
  amount: 1000,
  currency: 'NOK',
  ...
})