Skip to main content

Authenticate with client credentials

POST 

/auth/token

This endpoint is used to obtain a bearer token for authenticating subsequent requests to the API. The "client_id" and "client_secret" are credentials that uniquely identify the client making the request. The grant_type should always be "client_credentials", and the scope should include "openid" to indicate the use of OpenID Connect for authentication.

Request

Body

required

Params and values to authenticate

    client_id stringrequired
    client_secret stringrequired
    grant_type stringrequired
    scope string

Responses

Successful operation

Schema

    access_token string
    expires_in string
    scope string
    token_type string
Loading...