v1

latestOpenAPI 3.1.02026-07-2615426267.4 KB
Authentication

Get Access Token

Obtain an access token using various grant types.

Supports the following grant types:

  • Client Credentials
  • Authorization Code
  • Refresh Token
  • Password
post/oauth/token

Response

Successful token response

access_tokenstring required

The access token issued by the authorization server

token_typestring required

The type of the token

expires_ininteger required

The lifetime in seconds of the access token

refresh_tokenstring

The refresh token, which can be used to obtain new access tokens

scopestring

The scope of the access token

Example response

{
  "token_type": "Bearer"
}