Auth

Generate access token

Accepts grant_type: client_credentials, password, otp, refresh_token, assume_user and extended_otp

post/Auth/Token

Headers

X-Versionstring

Request body

usernamestring nullable

required for grant_type client_credentials and password

client_Idstring nullable

required for grant_type client_credentials and password

grant_Typestring nullable

accepted values: password, client_credentials, refresh_token

passwordstring nullable

required for grant_type password

client_Secretstring nullable

required for grant_type client_credentials

otpstring nullable

required for grant_type otp

refresh_Tokenstring nullable

required for grant_type refresh_token

Example request

{
  "username": "user@email.com",
  "grant_Type": "password",
  "password": "yourPassword"
}

Response

Success

access_Tokenstring nullable

bearer token required for authorized endpoints

refresh_Tokenstring nullable

refresh token used with access token to generate new access token

expires_Innumber double

lifetime in seconds

token_Typestring nullable

always bearer

Changes

No recorded changes to this endpoint across all 1 revision of this API.