Skip to main content
POST
POST
Issues a new access token, allowing clients to stay authenticated without prompting the user to log in again.
Implement silent refresh by calling this endpoint ~60 seconds before the access token’s exp claim.

Headers

string
required
Bearer <access_token> — the current (not yet expired) JWT.

Response

boolean
true when a new token has been issued.
string
A new signed JWT (RS256). Replace the previous token in your client store.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200

New access token issued