v1

latestOpenAPI 3.0.12026-08-062555238.4 KB
Auth endpoints

Generate access token

Use this endpoint to generate an access token.

post/token

Response

Token generated successfully

access_tokenstring

The authorization token.

token_typestring

The token's type.

expires_innumber

The token's lifetime in seconds after the issue time.

scopestring

The token's scope.

Example response

{
  "access_token": "JSON Web Token",
  "token_type": "Bearer",
  "expires_in": 86399,
  "scope": "pos"
}
All 25 operations