Common
Manage the building blocks of Codat, including companies, connections, and more.
SDK Installation
NPM
npm add @codat/common
Yarn
yarn add @codat/common
Example Usage
import { CodatCommon } from "@codat/common";
(async () => {
const sdk = new CodatCommon({
security: {
authHeader: "",
},
});
const res = await sdk.companies.create({
description: "Requested early access to the new financing scheme.",
name: "Bank of Dave",
});
if (res.statusCode == 200) {
}
})();
Available Resources and Operations
Library generated by Speakeasy