Refresh JWT
After your accessToken
expires post the 1-hour mark, you won't need to go through the entire authentication process again. Instead, follow these simple steps:
Use the
refreshToken
: Present therefreshToken
(which you received during the initial authentication) to our designated endpoint.Receive a new
accessToken
: On successful validation of yourrefreshToken
, our system will immediately provide a newaccessToken
for your continued use.
API Details
Last updated