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

# ADP Workforce Now

> Access the ADP Workforce Now 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* -> *ADP Workforce Now*.
      </Step>

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

      <Step title="Call the ADP Workforce Now API">
        Let's make your first request to the ADP Workforce Now API (fetch employee information). 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/hr/v2/workers" \
              -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>' });

            // Fetch employee information from ADP Workforce Now
            const res = await nango.get({
              endpoint: '/hr/v2/workers',
              providerConfigKey: '<INTEGRATION-ID>',
              connectionId: '<CONNECTION-ID>'
            });

            console.log(res.data);
            ```
          </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 ADP Workforce Now accounts.
    </Tip>
  </Tab>

  <Tab title="🔗 Useful links">
    | Topic         | Links                                                                                                                                                    |
    | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | Authorization | [Guide to connect to ADP Workforce Now using Connect UI](/integrations/all/adp-workforce-now/connect)                                                    |
    | General       | [ADP Website](https://www.adp.com/)                                                                                                                      |
    |               | [ADP Workforce Now](https://workforcenow.adp.com/)                                                                                                       |
    |               | [ADP Marketplace Partner Program](https://partners.adp.com/)                                                                                             |
    | Developer     | [ADP Workforce Now API docs](https://developers.adp.com/articles/guides/adp-workforce-now-api-catalog)                                                   |
    |               | [ADP Workforce Now Authentication](https://developers.adp.com/guides/adp-marketplace-integration-guides/auth-process-data-connector-apps/chapter/2)      |
    |               | [How to generate a certificate signing request](https://developers.adp.com/getting-started/key-concepts/generate-a-certificate-signing-request#overview) |
    |               | [Making Your First API](https://developers.adp.com/getting-started/key-concepts/make-your-first-api-call-using-postman-1#overview)                       |

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

  <Tab title="🚨 API gotchas">
    *None yet, add yours!*

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

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