/
Authorization request
Authorization request
The request example which doo sends to the external system to get the Access Token.
Request
curl -L -X POST '<external_oauth_endpoint_url>' \
-H 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'client_id=<client_id>' \
--data-urlencode 'client_secret=<client_secret>' \
--data-urlencode 'grant_type=client_credentials'
Parameters
Parameter | Description |
---|---|
| The value provided during the webhook configuration creation in Create webhook configuration |
| The value provided during the webhook configuration creation in Create webhook configuration |
| The value provided during the webhook configuration creation in Create webhook configuration |
Response
In response, doo should receive JSON with access_token
property, which contains the Access Token. Doo will use this access_token
in the webhook request to the external system.
Example of successful response JSON:
{
"message": "string", // short success or error message
"description": "string" // additional information
"access_token": "string" // access token which will be used for sending the webhook request
}
Please use the same principles for this response as described in How to respond to webhook requests?
, multiple selections available,
Related content
Authorization
Authorization
More like this
Request with Access Token
Request with Access Token
Read with this
How to make a GraphQL query
How to make a GraphQL query
More like this