Authentication
Verify your identity to grant access to the API
Overview
Getting Started
1. Request Credentials
2. Generate Access Token
curl --request POST \
--url https://auth.integrations.optondemand.com/oauth/token \
--header 'Content-Type: application/json' \
--data '{
"client_id": "YOUR_CLIENT_ID",
"client_secret": "YOUR_CLIENT_SECRET",
"grant_type": "client_credentials"
}'3. Use the Token
Last updated