Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gocardless-pro-node-extra

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gocardless-pro-node-extra

A Node.js Client for interracting with the Gocardless Pro API

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

gocardless-pro-node-extra

A Node.js Client for interracting with the Gocardless Pro API

NPM version Build Status

Documentation

See Gocardless Pro API Reference

Installation

Install the package with

npm install gocardless-pro-node-extra --save

or

yarn add gocardless-pro-node-extra

Usage

Create a Client instance and provide the access_token and environment you want to use.

const gocardlessPro = require("gocardless-pro-node");

// Gets Access Token stored in environment variable
const access_token = process.env.ACCESS_TOKEN;
const environment = "sandbox";

const client = new gocardlessPro.Client({
  access_token,
  environment
});

const customers = await client.customers.list({
  params: {
    limit: 30
  }
});

Usage with Typescript

import * as gocardlessPro from "gocardless-pro-node";

// Gets Access Token stored in environment variable
const access_token = process.env.ACCESS_TOKEN;
const environment = "sandbox";

const client = new gocardlessPro.Client({
  access_token,
  environment
});

client.customers
  .list({
    params: {
      limit: 30
    }
  })
  .then(customers => {
    // List of customers
  })
  .catch(error => {
    // Handle error
  });

Events

The Gocardless Client instance emits request and response events

const gocardlessPro = require("gocardless-pro-node");

// Gets Access Token stored in environment variable
const access_token = process.env.ACCESS_TOKEN;
const environment = "sandbox";

const client = new gocardlessPro.Client({
  access_token,
  environment
});

// Add the request event handler function:
client.on("request", request => {
  // Carry out some actions
});

// Add the request event handler function:
client.on("response", response => {
  // Carry out some actions
});

Avaliable resources

  • Bank Details Lookups
  • CreditorBankAccounts
  • Creditors
  • Customer Bank Accounts
  • Customer Notifications
  • Customers
  • Events
  • Mandate Import Entries
  • Mandate Imports
  • Mandate Pdfs
  • Mandates
  • Payments
  • Payout Items
  • Payouts
  • Redirect Flows
  • Refunds
  • Subscriptions

Development

Running tests

$ npm install
$ npm test

or

$ yarn
$ yarn test

To use your Sandbox Access Token to run the tests, you need to set the environment variable SANDBOX_ACCESS_TOKEN

$ export SANDBOX_ACCESS_TOKEN='Your Sandbox Access Token'
$ npm test

FAQs

Package last updated on 16 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc