Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Get an API Key
Anchor
get-api-key
get-api-key

Contact doo, and we will provide you an API Key to access our Webhook Management API.

Get an OAuth Client Credentials
Anchor
get-client-credentials
get-client-credentials

Contact doo, and we will provide you an OAuth Client Credentials to access our Webhook Management API.

OAuth Client Credentials include:

...

To use it for a new organization, you should be invited to this organization with the role team administrator's role by some other existing member.

...

UseĀ OAuth Client Credentials to obtain the Access Token from the OAuth endpoint.

Request

Code Block
languagebash
titleCurl
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"}'

...