You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Walter Lara edited this page Apr 25, 2022
·
2 revisions
Refresh JWT Access Token
Allows to refresh the JWT access token (technically login) by using the refresh token provided during a previous login. On success, provides a new JWT access token that can be used to access protected resources and a refresh token.
Request
URL: /v1/auth/refresh
Method: GET
Path Parameters: None
Query Parameters: None
Headers:
Authorization: Bearer {refreshToken}
Accept: application/json
✅ Success Response
Code: 200 OK
Headers:
Content-Type: application/json
Content:
Field
Type
Description
Condition
accessToken
string
JWT token usable to access protected resources.
Always
refreshToken
string
JWT token usable one-time only to refresh an expired accessToken.