1.1.1 • Published 3 years ago

freepay.js v1.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Freepay.js

Easily use the Freepay API with JavaScript.

Code Example

npm i freepay.js
const freepay = require("freepay.js").default;
const client = new Freepay("your-api-key-from-dashboard");

// Get authorization example
const authorization = client
  .getAuthorization("00000000-0000-0000-0000-000000000000")
  .then((response) => {
    // Do something with response.
  })
  .catch((error) => console.error);

// Or async
const authorization = await client.getAuthorization("00000000-0000-0000-0000-000000000000");

For other code examples check the wiki.

Tasks

  • Paymentlink

Done

  • Get authorization information
  • Void authorization
  • Get authorization capture
  • Get authorization captures
  • Capture authorization
  • Get authorization credit
  • Get authorization credits
  • Credit authorization
  • Get information about recurring payment agreement
  • Delete recurring payment agreement
  • Make recurring authorization
1.1.1

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago