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

# Jobber

> Access the Jobber API in 2 minutes 💨

<Tabs>
  <Tab title="🚀 Quickstart">
    <Steps>
      <Step title="Create an integration">
        In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Jobber*. Nango doesn't provide a test OAuth app for Jobber yet. You’ll need to set up your own by following these [instructions](#🧑%E2%80%8D💻-oauth-app-setup). After that, make sure to add the OAuth client ID, and secret in the integration settings in Nango.
      </Step>

      <Step title="Authorize Jobber">
        Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then log in to Jobber. Later, you'll let your users do the same directly from your app.
      </Step>

      <Step title="Call the Jobber API">
        Let's make your first request to the Jobber API (fetch a list of users). 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 POST "https://api.nango.dev/proxy/graphql" \
              -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
              -H "Provider-Config-Key: <INTEGRATION-ID>" \
              -H "Connection-Id: <CONNECTION-ID>" \
              -H "Content-Type: application/json" \
              -d '{"query":"{ user { id name { first last } } }"}'
            ```
          </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.post({
                endpoint: '/graphql',
                data: {"query":"{ user { id name { first last } } }"},
                providerConfigKey: '<INTEGRATION-ID>',
                connectionId: '<CONNECTION-ID>'
            });

            console.log(JSON.stringify(res.data, null, 2));
            ```
          </Tab>
        </Tabs>

        Or 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 Jobber accounts.
    </Tip>
  </Tab>

  <Tab title="🧑‍💻 OAuth app setup">
    <Steps>
      <Step title="Create a Jobber developer account">
        If you don’t already have one, sign up for a [Jobber developer account](https://developer.getjobber.com/landing).
      </Step>

      <Step title="Create a new App">
        1. Navigate to [Manage Apps](https://developer.getjobber.com/apps).
        2. Click the **+ New** button on the top right corner.
        3. Fill in all the required information. For **Callback URL**, add `https://api.nango.dev/oauth/callback`, then save the app.
      </Step>

      <Step title="Get your credentials">
        1. After creating the app, copy the **Client ID** and **Client Secret** that will be generated by Jobber. You’ll need these when configuring your integration in Nango.
      </Step>

      <Step title="Next">
        Follow the [Quickstart guide](/getting-started/quickstart) to complete your integration.
      </Step>
    </Steps>
  </Tab>

  <Tab title="🔗 Useful links">
    | Topic     | Links                                                                                                      |
    | --------- | ---------------------------------------------------------------------------------------------------------- |
    | General   | [Jobber Website](https://www.getjobber.com/)                                                               |
    | Developer | [Developer Center](https://developer.getjobber.com/docs/)                                                  |
    |           | [Developer console (Manage Apps)](https://developer.getjobber.com/apps)                                    |
    |           | [App Authorization (OAuth 2.0)](https://developer.getjobber.com/docs/building_your_app/app_authorization/) |
    |           | [API Versioning](https://developer.getjobber.com/docs/using_jobbers_api/api_versioning/)                   |
    |           | [API Rate Limiting](https://developer.getjobber.com/docs/using_jobbers_api/api_rate_limits/)               |
    |           | [App Listing Details](https://developer.getjobber.com/docs/publishing_your_app/app_listing_details/)       |

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

  <Tab title="🚨 API gotchas">
    * The application is granted an access level permission based on the scopes defined when the app was created, so there is no need to specify scopes in Nango.
    * Jobber enforces a limit of 2,500 requests every 5 minutes on a per app/account basis rather than by IP address. If an app exceeds this limit, any subsequent requests to that Jobber account will return a 429 Too Many Requests error. For more details, see the [API Rate Limiting documentation](https://developer.getjobber.com/docs/using_jobbers_api/api_rate_limits/)

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

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