Skip to content
This repository was archived by the owner on Sep 6, 2024. It is now read-only.
/ sdk Public archive

IntegrationOS SDK built in Rust

License

Notifications You must be signed in to change notification settings

picahq/sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d955d24 · Aug 8, 2024
Mar 26, 2024
Jun 21, 2024
Mar 4, 2024
May 14, 2024
Jul 30, 2024
Aug 8, 2024
May 10, 2024
May 10, 2024
Jun 21, 2024
Mar 6, 2024
Mar 4, 2024
Apr 22, 2024
Mar 1, 2024
Apr 5, 2024
May 10, 2024
Aug 8, 2024
Aug 8, 2024
Aug 8, 2024
Aug 8, 2024
Jun 21, 2024

Repository files navigation

IntegrationOS Node.js Library

The IntegrationOS library for Node.js provides convenient access to the IntegrationOS API from applications written in server-side JavaScript.

Install

Using npm:

npm i @integrationos/node

Using yarn:

yarn add @integrationos/node

Configuration

To use the library you must provide an API key and Connection key. Both are located in the IntegrationOS dashboard.

import { IntegrationOS } from "@integrationOS/node";

const integrate = new IntegrationOS("sk_live_1234");

const response = await integrate
  .customers("live::xero::acme-inc")
  .get("cus_OT3CLnirqcpjvw");

console.log(response);

Testing

Configure the .env file based on the .env.sample provided with an IntegrationOS Secret Key, Connection Key and Model to test.

Full Documentation

Please refer to the official IntegrationOS Documentation and API Reference for more information and Node.js usage examples.