Skip to main content

Exchange a client-signed JWT for an OAuth 2 access token

POST 

/oauth/token

Get an access token

Request

Body

required
    grant_type required

    Possible values: [client_credentials]

    client_assertion_type required

    Possible values: [urn:ietf:params:oauth:client-assertion-type:jwt-bearer]

    client_assertion jwtrequired

Responses

Newly created access token

Schema
    expires_in integerrequired

    Access token validity duration (in seconds)

    token_type required

    Possible values: [Bearer]

    scope stringrequired

    Space separated list of granted scopes

    access_token stringrequired

    The access token

Loading...