Versions Compared

Key

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

...

Client Credentials include:

  • client_id

  • client_secretClient ID

  • Client Secret

The Client Credentials are attached to a doo user, so you should have an account in doo and specify your user_id or account's email to get theĀ OAuth Client Credentials from us.

...

Parameter

Required

Description

<api_key>

Yes

see See documentation about the API Key above.

<client_id>

Yes

see See documentation about the OAuth Client Credentials above.

<client_secret>

Yes

see See documentation about the OAuth Client Credentials above.

Response example

Code Block
languagejson
{
    "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"
        }
    }
}

...