Refresh Token

Exchange a valid refreshToken for a new accessToken + refreshToken pair. Refresh tokens are valid for 7 days. Rotate the refresh token on every call — do not reuse the old one after receiving a new one.

Always store and use the new refreshToken from the response. Reusing an old refresh token will fail.

Body

refreshToken

*String

The refresh token from the most recent authenticate or refresh response.

expiresIn

Integer

Lifetime for the new access token in seconds. Default 900 (15 min), max 86 400 (24 h).

POST
/ v2/auth/refresh
Endpoint URL(TEXT)
Request Body
Response(JSON)
// Click 'Try now' to see the response