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

# NetSuite (Client Credentials)

> Integrate your application with NetSuite using OAuth 2.0 Client Credentials

## 🚀 Quickstart

Connect to NetSuite with Nango using the OAuth 2.0 Client Credentials flow and see data flow in minutes.

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

  <Step id="connect-netsuite" title="Connect NetSuite">
    Go to [Connections](https://app.nango.dev/dev/connections) → *Add Test Connection* and provide your NetSuite credentials. Later, you'll let your users or systems do the same directly from your app.

    <Note>You will need your NetSuite Account ID, Client ID, Certificate ID, and RSA private key. Follow the setup guide below to obtain these.</Note>
  </Step>

  <Step id="call-netsuite-api" title="Call the NetSuite API">
    Make your first request to the NetSuite REST API. Replace the placeholders below with your [API 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 "https://api.nango.dev/proxy/record/v1/customer" \
          -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: '/record/v1/customer',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

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

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

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

    To obtain your own production credentials, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 NetSuite (Client Credentials) integration guides

* [How to link your NetSuite account](/api-integrations/netsuite-client-credentials/connect)\
  Find your Account ID, Client ID, Certificate ID, and private key to connect via the Connect UI

Official docs: [NetSuite OAuth 2.0 Client Credentials](https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_162686838198.html)

## 🧩 Pre-built syncs & actions for NetSuite (Client Credentials)

Enable them in your dashboard. [Extend and customize](/guides/functions/functions-guide) 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>

***
