v1

latestOpenAPI 3.1.02026-08-06118124285.7 KB
Authentication

Issue access token

Operation returns the security token to be used for subsequent calls to API

post/v2/oauth/token

Query parameters

grant_typestring required

Grant type requested

Response

Success

expires_ininteger
jtistring
access_tokenstring
scopestring
token_typestring

Example response

{
  "expires_in": 3600,
  "jti": "550e8400-e29b-41d4-a716-446655440000",
  "access_token": "eyJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJjbGllbnQifQ.signature",
  "scope": "read write",
  "token_type": "bearer"
}