POST
/
connect
/
token
curl --request POST \
  --url https://api.other.page/v1/connect/token \
  --header 'Content-Type: application/json' \
  --data '{
  "grant_type": "authorization_code",
  "client_id": "<string>",
  "client_secret": "<string>",
  "redirect_uri": "<string>",
  "code": "<string>",
  "code_verifier": "<string>"
}'
{
  "token_type": "Bearer",
  "expires_in": 123,
  "access_token": "<string>",
  "refresh_token": "<string>",
  "scope": "<string>"
}

Body

application/json

Response

201 - application/json

The response is of type object.