Use a refresh token to obtain a new access token without re-authenticating. This endpoint should be used when your access token expires.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The refresh token received from the access-token endpoint. Used to obtain a new access token when the current one expires.
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
New access token generated successfully
JWT access token to be used in Authorization header as Bearer token. Valid for 10 minutes.
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Refresh token used to obtain new access tokens when they expire. Store this securely.
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."