Authorization
- 1 Secrets
- 1.1 OAuth Client Credentials
- 1.2 API Key
- 2 Get an Access Token
- 2.1 Request
- 2.2 Parameters
- 2.3 Response example
Secrets
Please do not share your secrets with anyone else.
You have to be authorized to make any calls to our API. To authorize your API requests, will need:
OAuth Client Credentials
API Key
OAuth Client Credentials
We use OAuth Client Credentials to authorize clients. The Client Credentials are required to get an Access Token.
Client Credentials include:
Client ID
Client Secret
The Client Credentials can be created by a doo Administrator in the doo Manager App > Organization Settings (gear icon in the top bar) > Users > Client credentials.
API Key
We use API Key to identify clients and manage API limits for each client. The API Key is required for every request to our API endpoints.
Our default API limits are the following:
1000 requests per day;
1 request per second.
To receive your API key, please contact the doo Support Team.
Get an Access Token
Once you have the secrets, you can get Access Token using the API request described below. The Access Token is required to request most of our public API endpoints listed in this documentation as well as for requests to our GraphQL API .
Request
curl -X POST https://rest.doo.net/v1/oauth \
-H 'Content-Type: application/json' \
-H 'x-api-key: <api_key>' \
-d '{"client_id": "<client_id>", "client_secret": "<client_secret>", "grant_type": "client_credentials"}'
Parameters
Parameter | Required | Description |
---|---|---|
| Yes | See the documentation about the API Key above. |
| Yes | See the documentation about the OAuth Client Credentials above. |
| Yes | See the documentation about the OAuth Client Credentials above. |
Response example
{
"response_status": 200,
"developer_message": "Success",
"user_message": "Success",
"data": {
"access_token": "<access_token>",
"refresh_token": null
},
"_links": {
"self": {
"href": "https://rest.doo.net/v1/oauth"
}
}
}