Refresh token
To refresh your token and obtain a new one, you can make a request to the token refresh endpoint with your current token.
Endpoint
POST /account/refresh_token/
CURL example
Parameters
Name
In
Type
Required
Description
data
body
RefreshAuthToken
true
none
RefreshAuthToken
Name
Type
Required
Description
token
string
true
none
Body parameter example
Responses
Status
Meaning
Description
Schema
200 Response example
If the request is successful and the current token is valid, you will receive a response containing a new token with an updated expiration time. You should use this new token for future API calls.
Last updated