This endpoint allows refreshing an access token using a valid refresh token.
The refreshed token must be used for subsequent API requests to ensure continued access.
Ensure that the refresh token is still valid and hasn't expired.
Responses
400
Invalid request, typically due to a malformed refresh token or a failed renewal attempt.
Possible reasons include:
The refresh_token is missing, invalid, or expired.
A session renewal error occurred.
Example response:
JSON
{
"error": "ERROR_REFRESH_TOKEN_INVALID",
"message": "Refresh token is invalid. Use a valid refresh token.",
"statusCode": 400
}
401
Authentication failed. This may happen due to the following reasons:
Authentication is required, but not provided.
The provided token has been revoked or is invalid.