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

# ConnectWise RMM

> Integrate your application with the ConnectWise RMM API

## 🚀 Quickstart

Connect to ConnectWise RMM with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *ConnectWise RMM*.

    This integration uses OAuth2 Client Credentials with region-specific subdomain configuration.
  </Step>

  <Step title="Authorize ConnectWise RMM">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter your ConnectWise RMM **API Subdomain**, **Client ID**, and **Client Secret**. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the ConnectWise RMM API">
    Let's make your first request to ConnectWise RMM (fetch companies). Replace the placeholders below with your [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/api/platform/v1/company/companies" \
          -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 with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });

        const res = await nango.get({
            endpoint: '/api/platform/v1/company/companies',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/reference/sdks/node#get-a-connection-with-credentials) or [API](/reference/api/connection/get).

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

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/guides/primitives/auth) to integrate Nango in your app.

    To connect with your own credentials, use the connect guide linked below.
  </Step>
</Steps>

## 📚 ConnectWise RMM Integration Guides

Nango maintained guides for common use cases.

* [How do I link my account?](/api-integrations/connectwise-rmm/connect)
  Connect your ConnectWise RMM account using the Connect UI

Official docs:

* [ConnectWise Developer Portal](https://developer.connectwise.com/)
* [ConnectWise RMM OpenAPI (US)](https://openapi.service.itsupport247.net)
* [ConnectWise RMM OpenAPI (EU)](https://openapi.service.euplatform.connectwise.com)
* [ConnectWise RMM OpenAPI (AU)](https://openapi.service.auplatform.connectwise.com)

## 🧩 Pre-built syncs & actions for ConnectWise RMM

Enable them in your dashboard. Extend and customize to fit your needs.

*No pre-built syncs or actions available yet.*

<Tip>Not seeing the integration you need? [Build your own](/guides/functions/functions-guide) independently.</Tip>

***
