Authentication
Refresh 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 password-based authentication, use “password”.
username
string
requiredThe email address associated with the account.
password
string
requiredPassword corresponding to the username provided.
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.