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

# HiBob (OAuth)

> Integrate your application with the HiBob API using OAuth 2.0

<Note>
  OAuth 2.0 is available only for approved HiBob Marketplace and technology partners building apps that connect multiple customer tenants to Bob. If you're integrating your own single HiBob account, use [HiBob (Service User)](/docs/integrations/all/hibob-service-user) instead.
</Note>

## 🚀 Quickstart

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

<Steps>
  <Step title="Get a client ID and secret">
    Follow the [setup guide](/docs/api-integrations/hibob-oauth/how-to-register-your-own-hibob-oauth-app) below to get approved as a HiBob partner and register your app in the HiBob Developer Portal. You'll need the resulting **client ID** and **client secret** before you can create the integration in Nango.
  </Step>

  <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* -> *HiBob (OAuth)*, and enter your client ID and client secret.
  </Step>

  <Step title="Authorize HiBob">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then log in to HiBob and consent to the scopes and audience for a test company. Later, your customers will do this themselves when they install your app from the Bob Marketplace.
  </Step>

  <Step title="Call the HiBob API">
    Let's make your first request to the HiBob API. 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 "https://api.nango.dev/proxy/v1/company/named-lists" \
          -H "Authorization: Bearer <NANGO-SECRET-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-SECRET-KEY>' });

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

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

    Or fetch credentials with the [Node SDK](/docs/reference/backend/backend-sdk/node#get-a-connection-with-credentials) or [API](/docs/reference/backend/http-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 [quickstart](/docs/getting-started/quickstart) to integrate Nango in your app.
  </Step>
</Steps>

<Note>
  The API access your app has for a given connection depends on the scopes and audience the customer approved during installation — a request can return a partial result set or a 404 for an employee outside the approved audience, even with valid scopes. See HiBob's [developer documentation](https://apidocs.hibob.com) for details on scopes and people data access.
</Note>

## 📚 HiBob Integration Guides

Nango maintained guides for common use cases.

* [How to register your own HiBob (OAuth) app](/docs/api-integrations/hibob-oauth/how-to-register-your-own-hibob-oauth-app)
  Get approved as a HiBob partner, register your app, and obtain OAuth credentials to connect it to Nango

Official docs: [HiBob API docs](https://apidocs.hibob.com)

## 🧩 Pre-built syncs & actions for HiBob

Enable them in your dashboard. [Extend and customize](/docs/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](https://nango.dev/docs/guides/functions/functions-guide) independently.</Tip>

***
