Documentation Index
Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
🚀 Quickstart
🔗 Useful links
🚨 API gotchas
Create an integration
Sign up for a free Nango account (here) if you haven’t already. Then navigate to Integrations -> Configure New Integration -> select NinjaOne RMM. Authorize NinjaOne RMM
Go to Connections -> Add Test Connection -> Authorize, then enter your NinjaOne RMM Client ID and Client Secret. Later, you’ll let your users do the same directly from your app. Call the NinjaOne RMM API
Let’s make your first request to NinjaOne RMM (fetch a list of devices). Replace the placeholders below with your Nango secret key, integration ID, and connection ID:curl -X GET "https://api.nango.dev/proxy/v2/devices" \
-H "Authorization: Bearer <NANGO-SECRET-KEY>" \
-H "Provider-Config-Key: <INTEGRATION-ID>" \
-H "Connection-Id: <CONNECTION-ID>" \
-H "Accept: application/json"
Install Nango’s backend SDK: npm i @nangohq/node. Then run:import { Nango } from '@nangohq/node';
const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });
// Fetch a list of devices from NinjaOne RMM
const res = await nango.get({
endpoint: '/v2/devices',
providerConfigKey: '<INTEGRATION-ID>',
connectionId: '<CONNECTION-ID>'
});
console.log(res.data);
You can also fetch credentials dynamically via the Node SDK or API. ✅ You’re connected! Check the Logs tab in Nango to inspect requests.Next step: Embed the auth flow in your app to let your users connect their NinjaOne RMM accounts.
- The Client Secret is only displayed once after creation, so store it securely.
- NinjaOne RMM uses OAuth 2.0 Client Credentials flow with permissions (monitoring, management, control). When creating the OAuth Client Application, you can select one or more of these permissions depending on what access your integration needs.