Skip to main content

🚀 Quickstart

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

Create an integration

In Nango (free signup), go to Integrations -> Configure New Integration -> Workday (OAuth).
2

Authorize Workday

Go to Connections -> Add Test Connection -> Authorize, then log in to Workday. Later, you’ll let your users do the same directly from your app.
3

Call the Workday API

Let’s make your first request to the Workday API (fetch worker information). Replace the placeholders below with your secret key, integration ID, and connection ID:
curl "https://api.nango.dev/proxy/v1/{connectionConfig.tenant}/workers" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>"
Or fetch credentials dynamically via the Node SDK or API.
The {connectionConfig.tenant} in the URL represents the tenant. You can get this value from your connection configuration after creating the connection.
4

Implement Nango in your app

Follow our quickstart to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.
✅ You’re connected! Check the Logs tab in Nango to inspect requests.
Next step: Embed the auth flow in your app to let your users connect their Workday accounts.

📚 Workday Integration Guides

Nango maintained guides for common use cases. Official docs: Workday REST Services Directory

🚨 API Gotchas

  • Workday provides two APIs, a REST and a SOAP one and Nango supports them both.
  • Access to most of Workday’s API doc resources, including detailed documentation on OAuth authentication flows, is typically restricted to Workday customers and partners. To access these resources, you can:
    1. Sign In to Workday Community: Visit the Workday Community and sign in with your Workday credentials. If you don’t have an account, you can request one.
    2. Contact Workday Support: If you are a customer, reach out to Workday Support for assistance in accessing specific documentation.