identity
Exchange authorization code for access token
Exchanges an OAuth 2.0 authorization code for an access token. Used in the authorization code grant flow.
post/oauth/access_token
Request body
Example request
{
"grant_type": "authorization_code"
}Response
Access token issued.
Example response
{
"token_type": "bearer"
}