POST
/
v5
/
oauth
/
token
curl --request POST \
  --url https://{defaultHost}/v5/oauth/token \
  --header 'Content-Type: application/json' \
  --data '{
  "grant_type": "authorization_code",
  "code": "<string>",
  "client_id": "<string>",
  "client_secret": "<string>",
  "redirect_uri": "<string>"
}'
{
  "access_token": "<string>"
}

For more information about OAuth, follow our Webapp guide.

Body

application/json

Response

200
application/json

oauth token created

The response is of type object.