JavaScript SDK Example
Using the JavaScript SDK for easier integration.
Installation
npm install @company/sdk
Basic Usage
import SDK from '@company/sdk';
const client = new SDK({
apiKey: 'your-api-key'
});
const users = await client.users.list();
Creating Resources
const user = await client.users.create({
name: 'John Doe',
email: 'john@example.com'
});