Skip to main content

Obtain an OAuth 2.0 token using client credentials

POST 

/token

Obtain an OAuth 2.0 token using client credentials

Request

Body

required
    grant_type stringrequired

    Grant type, must be 'client_credentials'

    client_id stringrequired

    The client identifier issued to the client

    client_secret stringrequired

    The client secret

Responses

Access token generated successfully

Schema
    access_token string

    The access token issued by the authorization server

    token_type string

    The type of token issued

    expires_in integer

    The lifetime in seconds of the access token

Loading...