> ## Documentation Index
> Fetch the complete documentation index at: https://nango-marcin-get-deployments-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# N-able N-central

> Integrate your application with the N-able N-central API

## 🚀 Quickstart

Connect to N-able N-central with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango, go to **Integrations** -> *Configure New Integration* -> *N-able N-central*.
  </Step>

  <Step title="Authorize N-able N-central">
    Go to **Connections** -> *Add Test Connection* -> *Authorize*, then enter your **N-central server URL** and **User-API token**. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the N-central API">
    Make your first request to the N-central API by validating the current access token. Replace the placeholders below with your Nango API key, integration ID, and connection ID:

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/auth/validate" \
          -H "Authorization: Bearer <NANGO-API-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>"
        ```
      </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-API-KEY>' });

        const res = await nango.get({
            endpoint: '/auth/validate',
            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** 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 obtain your N-central server URL and User-API token, follow the connect guide linked below.
  </Step>
</Steps>

## 📚 N-able N-central integration guides

Nango-maintained guides for common use cases.

* [How do I link my N-able N-central account?](/api-integrations/nable-ncentral/connect)\
  Get your N-central server URL and User-API token and connect to Nango

Official docs: [N-able N-central API docs](https://developer.n-able.com/n-central/docs/quickstart)

## 🧩 Pre-built syncs & actions for N-able N-central

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>

***
