This is an alphanumeric identifier of a specific Yellow Dog database.
Overview
API Support Group
Languages
Servers
Production server
https://auth.yellowdogsoftware.com/
Bodyapplication/json
This name identifies a user registered with the database represented by the clientId. If this user has API access privileges, they will be able to request an access token.
Example: "bi_dashboard_api_key"
- Production server
https://auth.yellowdogsoftware.com/token
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://auth.yellowdogsoftware.com/token \
-H 'Content-Type: application/json' \
-d '{
"clientId": "ABC123",
"userName": "bi_dashboard_api_key",
"password": "xyz-123-abc-789-pqr"
}'Response
application/json
{ "success": true, "result": { "accessToken": "xxxxx.yyyyy.zzzzz", "refreshToken": "01234567-0123-abcd-0123-abcdef012345", "tokenType": "bearer", "clientId": 3210, "databaseVersion": 377, "expiresIn": 3600, "expires": "2025-10-20T14:45:06Z", "isUser": true, "authType": 1 }, "errors": null }
Bodyapplication/json
This is an alphanumeric identifier of a specific Yellow Dog database.
Example: "ABC123"
- Production server
https://auth.yellowdogsoftware.com/refreshToken
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://auth.yellowdogsoftware.com/refreshToken \
-H 'Content-Type: application/json' \
-d '{
"clientId": "ABC123",
"refreshToken": "01234567-0123-abcd-0123-abcdef012345"
}'Response
application/json
{ "success": true, "result": { "accessToken": "xxxxx.yyyyy.zzzzz", "refreshToken": "01234567-0123-abcd-0123-abcdef012345", "tokenType": "bearer", "clientId": 3210, "databaseVersion": 377, "expiresIn": 3600, "expires": "2025-10-20T14:45:06Z", "isUser": true, "authType": 1 }, "errors": null }
