Authentication
Access Token
This endpoint authenticates the user and returns a unique token for subsequent requests.
POST
/
api
/
v1
/
auth
/
token
Body
grant_type
string
requiredMethod used for obtaining a token. For obtaining new access tokens use “refresh_token”.
refresh_token
string
requiredThe Token that can be used to obtain a new access token.
Response
refresh_token
string
requiredToken that can be used to obtain a new access token when the current one expires.
access_token
string
requiredToken returned after successful authentication. Use this token for “Authorization” in subsequent requests.
token_type
string
Type of token. Commonly “Bearer”.
expires_in
number
Duration (in seconds) before the token expires.