0.30.0 • Published 7 months ago

@codat/banking v0.30.0

Weekly downloads
-
License
-
Repository
github
Last release
7 months ago

Banking

Use Codat's API to connect to your SMB customer's banks and pull up-to-date standardized account and transaction data from their bank accounts via our partner providers.

SDK Installation

NPM

npm add @codat/banking

Yarn

yarn add @codat/banking

Example Usage

import { CodatBanking } from "@codat/banking";

(async () => {
    const sdk = new CodatBanking({
        security: {
            authHeader: "Basic BASE_64_ENCODED(API_KEY)",
        },
    });

    const res = await sdk.accountBalances.list({
        companyId: "8a210b68-6988-11ed-a1eb-0242ac120002",
        connectionId: "2e9d2c44-f675-40ba-8049-353bfcb5e171",
        orderBy: "-modifiedDate",
        page: 1,
        pageSize: 100,
    });

    if (res.statusCode == 200) {
        // handle response
    }
})();

Available Resources and Operations

accountBalances

  • list - List account balances

accounts

  • get - Get account
  • list - List accounts

transactionCategories

  • get - Get transaction category
  • list - List transaction categories

transactions

  • get - Get bank transaction
  • list - List transactions
  • listBankTransactions - List banking transactions :warning: Deprecated Use list instead.

Library generated by Speakeasy

0.30.0

7 months ago

0.29.0

8 months ago

0.28.0

8 months ago

0.27.1

11 months ago

0.19.2

11 months ago

0.21.1

11 months ago

0.17.1

12 months ago

0.14.0

1 year ago

0.15.0

1 year ago

0.13.2

1 year ago

0.13.1

1 year ago

0.13.0

1 year ago

0.12.0

1 year ago