@optare/management
v0.1.0
Published
Node.js Management SDK for Optare ID - Server-side user, organization, and license management
Downloads
99
Maintainers
Readme
Management SDK
Server-side SDK for Optare ID administration. See documentation for full API reference.
Installation
npm install @optare/managementQuick Start
import { ManagementClient } from '@optare/management';
const client = new ManagementClient({
apiKey: process.env.OPTARE_API_KEY!,
});
// List users
const users = await client.users.list();
// Create a subscription
await client.subscriptions.create({
organizationId: 'org-123',
productId: 'product-456',
totalSeats: 10,
});Available Namespaces
users- User managementorganizations- Organization managementproducts- Product catalogsubscriptions- Subscription managementoauthClients- OAuth client managementapiKeys- API key managementwebhooks- Webhook management
