Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@integrationos/node

Package Overview
Dependencies
Maintainers
5
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@integrationos/node

Node SDK for the IntegrationOS Unified API

latest
npmnpm
Version
4.2.1
Version published
Maintainers
5
Created
Source

@integrationos/node

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.

Keywords

integrationos

FAQs

Package last updated on 09 Jan 2025

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