npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

go-cardless-js

v1.0.21

Published

GoCardless Api Documentation: https://developer.gocardless.com/api-reference/#api-usage-making-requests

Downloads

131

Readme

Go Cardless Api JS Wrapper

GoCardless Api Documentation: https://developer.gocardless.com/api-reference/#api-usage-making-requests

Getting started

const goCardlessApi = new GoCardlessApi("accessToken", sandbox?:boolean)
// sandbox is default TRUE
goCardlessApi.generateSessionToken(): string
// generates and returns new session token. new session token is automatically applied to all new request headers

Error format example


{
  "type": "go cardless validation error",
  "data": [
    {
      "field": "amount",
      "message": "must be greater than 0",
      "request_pointer": "/subscriptions/amount"
    }
  ]
}

Apis:

Index Actions

Index actions can take additional params for the url, as an object e.g. customer: "customer id" on a mandate would return you mandates where the customer id matches.

Bank Account

goCardlessApi.bankAccount

types

interface IGoCardlessBank {
  branchCode: string;
  accountHolderName: string;
  customerId: string;
  currency: string;
  accountNumber: string; // OR iban can be supplied instead
}
interface IGoCardlessApiBank {
  id: string;
  created_at: string;
  account_holder_name: string;
  account_number_ending: string;
  country_code: string;
  currency: string;
  bank_name: string;
  metadata: {
    // returns whatever you sent up
  };
  enabled: boolean;
  links: {
    customer: string,
  };
}

Actions

index
goCardlessApi.bankAccount.index({
  limit?: number;
  after?: string;
  before?: string;
  { [key: string]: string | number | undefined }
 }): Promise<{
  customer_bank_accounts: IGoCardlessApiBank[]
}>
create
goCardlessApi.bankAccount.create(data: IGoCardlessBank): Promise<{
  customer_bank_accounts: IGoCardlessApiBank
}>
update
goCardlessApi.bankAccount.update(id: string, data?: {
  metadata: {
    [key:string]:any
  }): Promise<{
  customer_bank_accounts: IGoCardlessApiBank
}>
find
goCardlessApi.bankAccount.find(id: string): Promise<{
  customer_bank_accounts: IGoCardlessApiBank
}>
disable
goCardlessApi.bankAccount.disable(id: string): Promise<{
  customer_bank_accounts: IGoCardlessApiBank
}>
bank account for customer id

returns an array of bank accounts for a customer by the given customer id.

goCardlessApi.bankAccount.bankAccountForCustomerId(customerId: string): Promise<{
  customer_bank_accounts: IGoCardlessApiBank[]
}>

Customer

goCardlessApi.customer

types

interface IGoCardlessCustomer {
  email: string;
  firstName: string;
  lastName: string;
  phone?: string;
  addressLine1?: string;
  addressLine2?: string;
  addressLine3?: string;
  city?: string;
  country?: string;
  postcode?: string;
  metaData?: { [key: string]: string | number };
}
interface IGoCardlessApiCustomer {
    id: string
    created_at: string
    email: string
    given_name: string
    family_name: string
    company_name: string
    address_line1: string
    address_line2: string
    address_line3: string
    city: string
    region: string
    postal_code: string
    country_code: string
    language: string
    swedish_identity_number: string
    danish_identity_number: string
    phone_number: string
    metadata: {
      // any keys you sent up
    }
  }
}

Actions

index
goCardlessApi.customer.index({
  limit?: number;
  after?: string;
  before?: string;
  { [key: string]: string | number | undefined }
 }): Promise<{
  customers: IGoCardlessApiCustomer[]
}>
create
goCardlessApi.customer.create(data: IGoCardlessCustomer): Promise<{
  customers: IGoCardlessApiCustomer
}>
update
goCardlessApi.customer.update(id: string, data: Partial<IGoCardlessCustomer>): Promise<{
  customers: IGoCardlessApiCustomer
}>
find
goCardlessApi.customer.update(id: string): Promise<{
  customers: IGoCardlessApiCustomer
}>

Mandate

goCardlessApi.mandate

types

interface IGoCardlessMandate {
  scheme:
    | "autogiro"
    | "bacs"
    | "becs"
    | "becs_nz"
    | "betalingsservice"
    | "sepa_core"
    | "pad";
  metadata?: Object;
  customer_bank_account: string;
  creditor?: string;
}
interface IGoCardlessApiMandate {
   id: string
  created_at: string
  reference: string
  status: string
  scheme: string
  next_possible_charge_date: string
  metadata: Object
  links: {
    customer_bank_account: string
    creditor: string
    customer: string
  }
  }

Actions

index
goCardlessApi.mandate.index({
  limit?: number;
  after?: string;
  before?: string;
  { [key: string]: string | number | undefined }
 }): Promise<{
  mandates: IGoCardlessApiMandate[]
}>

create

goCardlessApi.mandate.create(data: IGoCardlessMandate): Promise<{
    mandates: IGoCardlessApiMandate
  }>
update
goCardlessApi.mandates.update(id: string, {
    metadata?: Object
  }): Promise<{
    mandates: IGoCardlessApiMandate
  }>
find
goCardlessApi.mandates.find(id: string): Promise<{
    mandates: IGoCardlessApiMandate
  }>

Payments

goCardlessApi.payment

types

interface IGoCardlessPayment {
  amount: number; // must be greater than 0
  currency: string;
  charge_date: string;
  reference?: string;
  metadata?: Object;
  mandateId: string;
}
interface IGoCardlessApiPayment {
    id: string
    created_at: string
    charge_date: string
    amount: number
    description: string
    currency: string
    status: string
    reference: string
    metadata: Object
    amount_refunded: number
    links: {
      mandate: string
      creditor: string
    }

Actions

index
goCardlessApi.payment.index({
  limit?: number;
  after?: string;
  before?: string;
  { [key: string]: string | number | undefined }
 }): Promise<{
  payments: IGoCardlessApiPayment[]
}>
create
goCardlessApi.payment.create(data: IGoCardlessPayment): Promise<{
  payments: IGoCardlessApiPayment[]
}>
update
goCardlessApi.payment.create(id: string, {
  metadata: Object
}): Promise<{
  payments: IGoCardlessApiPayment[]
}>
find
goCardlessApi.payment.find(id: string): Promise<{
  payments: IGoCardlessApiPayment
}>
cancel
goCardlessApi.payment.cancel(id: string, data?: {
  metadata: Object
}): Promise<{
  payments: IGoCardlessApiPayment
}>
retry
goCardlessApi.payment.retry(id: string, data?: {
  metadata: Object
}): Promise<{
  payments: IGoCardlessApiPayment
}>

Payouts

goCardlessApi.payout

Actions

index
goCardlessApi.payout.index({
  limit?: number;
  after?: string;
  before?: string;
  { [key: string]: string | number | undefined }
 }): Promise<{
  payouts: {
    id: string
    amount: number
    deducted_fees: number
    currency: string
    created_at: string
    reference: string
    arrival_date: string
    status: string
    links: {
      creditor_bank_account: string
      creditor: string
    }}[]
}>
find
goCardlessApi.payout.find(id: string): Promise<{
  payouts: {
    id: string
    amount: number
    deducted_fees: number
    currency: string
    created_at: string
    reference: string
    arrival_date: string
    status: string
    links: {
      creditor_bank_account: string
      creditor: string
    }
  }
}>

Plan

goCardlessApi.plan

types

interface IGoCardlessPlan {
  amount: number // must be greater than 0
  currency: string
  name?: string
  intervalUnit: IGoCardlessPlanInterval
  count: number
  metadata?: Object
  mandateId: string
}
interface IGoCardlessApiPlan {
    id: string
    created_at: string
    amount: number
    currency: string
    status: string
    name: string
    start_date: string
    end_date: GoCardlessResponse
    interval: number
    interval_unit: IGoCardlessPlanInterval
    day_of_month: number
    month: GoCardlessResponse
    payment_reference: GoCardlessResponse
    app_fee: string | number | null
    upcoming_payments: { charge_date: string; amount: number }[]
    metadata: {
      order_no: string
    }
    links: {
      mandate: string
    }

Actions

index
goCardlessApi.plan.index({
  limit?: number;
  after?: string;
  before?: string;
  { [key: string]: string | number | undefined }
 }): Promise<{
  subscriptions: IGoCardlessApiPlan[]
}>
find
goCardlessApi.plan.find(id: string): Promise<{
  subscriptions: IGoCardlessApiPlan
}>
create
goCardlessApi.plan.create(data: IGoCardlessPlan): Promise<{
  subscriptions: {
    id: string
    created_at: string
    amount: number
    currency: string
    status: string
    name: string
    start_date: string
    end_date: GoCardlessResponse
    interval: number
    interval_unit: IGoCardlessPlanInterval
    day_of_month: number
    month: GoCardlessResponse
    payment_reference: GoCardlessResponse
    app_fee: string | number | null
    upcoming_payments: { charge_date: string; amount: number }[]
    metadata: {
      order_no: string
    }
    links: {
      mandate: string
    }
  }
}>
cancel
goCardlessApi.plan.cancel(id: string, data?: {
  metadata: Object
}): Promise<{
  subscriptions: IGoCardlessApiPlan
}>

Redirect Flows

NOT YET PUBLISHED

goCardlessApi.redirectFlows

types

interface IGoCardlessRedirectFlow {
  session_token: string;
  success_redirect_url: string;
  description?: string;
  prefilled_customer?: {
    address_line1?: string;
    address_line2?: string;
    address_line3?: string;
    city?: string;
    company_name?: string;
    country_code?: string;
    danish_identity_number?: string;
    email?: string;
    family_name?: string;
    given_name?: string;
    language?: string;
    phone_number?: string;
    postal_code?: string;
    region?: string;
    swedish_identity_number?: string;
  }
  scheme?: string;
  links?: {
    creditor?: string;
  }
}
interface IGoCardlessApiRedirectFlow {
  id: string;
  description: string;
  session_token: string;
  scheme: string;
  success_redirect_url: string;
  redirect_url: string;
  created_at: string;
  links: {
    creditor: string;
  };
}

Actions

create

goCardlessApi.redirectFlows.create(
  redirect_flows: IGoCardlessRedirectFlow
  ): Promise<{ redirect_flows: IGoCardlessApiRedirectFlow }>

complete

goCardlessApi.redirectFlows.complete(
    id: string,
    redirect_flows: { session_token: string }
  ): Promise<{ redirect_flows: IGoCardlessApiRedirectFlow }>

find

goCardlessApi.redirectFlows.find(
    id: string,
    params?: { [key: string]: string | number | undefined }
  ): Promise<{ redirect_flows: IGoCardlessApiRedirectFlow }>