POST
/
oauth
/
token
curl --request POST \
  --url https://api-sandbox.orum.io/oauth/token \
  --header 'Content-Type: application/json' \
  --data '{
  "client_id": "<string>",
  "client_secret": "<string>"
}'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123
}
The auth token is valid for one hour.

Body

Response

200
application/json

200 response.

The response is of type object.