Skip to main content
POST
/
v1
/
oauth
/
token
Exchange client credentials for a token
curl --request POST \
  --url https://api.useduro.com/v1/oauth/token \
  --header 'Content-Type: application/json' \
  --data '
{
  "grant_type": "client_credentials",
  "client_id": "<string>",
  "client_secret": "<string>"
}
'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123
}

Body

application/json
grant_type
enum<string>
required
Available options:
client_credentials
client_id
string
required
client_secret
string
required

Response

200 - application/json

Token

access_token
string
token_type
string
expires_in
integer