> ## 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.

# NinjaOne RMM

> Connect to the NinjaOne RMM API using client credentials in 2 minutes 💨

<Tabs>
  <Tab title="🚀 Quickstart">
    <Steps>
      <Step title="Create an integration">
        Sign up for a free Nango account ([here](https://app.nango.dev)) if you haven't already. Then navigate to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> select *NinjaOne RMM*.
      </Step>

      <Step title="Authorize NinjaOne RMM">
        Go to [Connections](https://app.nango.dev/dev/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.
      </Step>

      <Step title="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](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

        <Tabs>
          <Tab title="cURL">
            ```bash theme={null}
            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"
            ```
          </Tab>

          <Tab title="Node">
            Install Nango's backend SDK: `npm i @nangohq/node`. Then run:

            ```typescript theme={null}
            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);
            ```
          </Tab>
        </Tabs>

        You can also fetch credentials dynamically via the [Node SDK](/reference/sdks/node#get-a-connection-with-credentials) or [API](/reference/api/connection/get).
      </Step>
    </Steps>

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.

    <Tip>
      Next step: [Embed the auth flow](/guides/primitives/auth) in your app to let your users connect their NinjaOne RMM accounts.
    </Tip>
  </Tab>

  <Tab title="🔗 Useful links">
    | Topic         | Links                                                                                                              |
    | ------------- | ------------------------------------------------------------------------------------------------------------------ |
    | Authorization | [Guide to connect to NinjaOne RMM using Connect UI](/integrations/all/ninjaone-rmm/connect)                        |
    | General       | [NinjaOne Website](https://www.ninjaone.com/)                                                                      |
    | Developer     | [NinjaOne API Documentation](https://app.ninjarmm.com/apidocs-beta/)                                               |
    |               | [OAuth Client Credentials Flow](https://app.ninjarmm.com/apidocs-beta/authorization/flows/client-credentials-flow) |
    |               | [API Reference](https://app.ninjarmm.com/apidocs-beta/core-resources)                                              |

    <Note>Contribute useful links by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/ninjaone-rmm.mdx)</Note>
  </Tab>

  <Tab title="🚨 API gotchas">
    * 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.

    <Note>Contribute API gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/ninjaone-rmm.mdx)</Note>
  </Tab>
</Tabs>

<Info>
  Questions? Join us in the [Slack community](https://nango.dev/slack).
</Info>
