Auth
Refresh access token
Exchange a valid refresh token for a new access/refresh token pair.
post/api/auth/refresh
Request body
Response
New token pair issued
Example response
{
"accessToken": "eyJhbGciOiJIUzI1NiIs...",
"refreshToken": "eyJhbGciOiJIUzI1NiIs..."
}Changes
Changed in 1 of the 2 revisions of this API.1
- ○
added the media type
application/jsonfor the response with the status200response-media-type-added
- ○