Authentication
Refresh Token
Refreshes a user’s login session using a valid JSON Web Token (JWT).
POST
Over time, a JWT may expire, which means that the user will need to log in again to obtain a new JWT. However, the “/refresh” method provides a way for the user to refresh their existing login session without having to log in again.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Successful token refresh.
The response is of type object
.