MonoCloud Management SDK for JavaScript – programmatically manage apps, policies, configurations, users, and groups via the MonoCloud Management APIs.
MonoCloud is a modern, developer-friendly Identity & Access Management platform.
This SDK provides a full-featured, typed JavaScript client for interacting with the MonoCloud Management APIs, allowing you to automate tenant administration programmatically.
npm install @monocloud/management
The SDK closely mirrors the REST API structure — clients are organized by resource areas (clients, resources, users, groups, etc.).
const managementClient = MonoCloudManagementClient.init({
domain: 'https://<your-tenant-domain>',
apiKey: '<your-api-key>',
});
Do not hardcode your API key. It is recommended to load it from an environment variable. See: monocloud-management-client
const result = await managementClient.clients.getAllClients(
1,
10,
"dashboard",
"name:1"
);
Explore further operations at https://www.monocloud.com/docs
Do not report security issues publicly. Please follow the contact instructions at: https://www.monocloud.com/contact
Licensed under the MIT License. See the included LICENSE file.