Skip to main content

🚀 Quickstart

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

Create an integration

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

Connect Workday Adaptive Planning

Go to Connections -> Add Test Connection and fill in your credentials. Later, you’ll let your users do the same directly from your app.
3

Call the Workday Adaptive Planning API

The Adaptive Planning API uses XML-based requests. Authentication requires passing the AdaptiveAPIAccessToken (stored in your Nango connection) inside the XML credentials element — Basic auth with username/password won’t work.Replace the placeholders below with your secret key, integration ID, and connection ID:
# Step 1: Retrieve the AdaptiveAPIAccessToken from Nango
TOKEN=$(curl -s "https://api.nango.dev/connection/<CONNECTION-ID>?provider_config_key=<INTEGRATION-ID>" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" | jq -r '.credentials.token')

# Step 2: Use the token in an Adaptive Planning XML API request
curl -X POST "https://api.nango.dev/proxy/api/v40" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>" \
  -H "Content-Type: application/xml" \
  -d "<?xml version='1.0' encoding='UTF-8'?>
<call method=\"exportLevels\" callerName=\"your-app\">
  <credentials token=\"$TOKEN\"/>
  <include versionID=\"3\" inaccessibleValues=\"false\"/>
</call>"
Or fetch credentials with the Node SDK or API.✅ You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our Auth implementation guide to integrate Nango in your app.To set up your own credentials, follow the setup guide linked below.
Next step: Embed the auth flow in your app to let your users connect their Workday Adaptive Planning accounts.

📚 Workday Adaptive Planning Integration Guides

Nango maintained guides for common use cases. Official docs: Workday API documentation

🧩 Pre-built syncs & actions for Workday Adaptive Planning

Enable them in your dashboard. Extend and customize to fit your needs. No pre-built syncs or actions available yet.
Not seeing the integration you need? Build your own independently.