Auth

Refresh access token

Exchange a valid refresh token for a new access/refresh token pair.

post/api/auth/refresh

Request body

refreshTokenstring required

Refresh token

Response

New token pair issued

accessTokenstring required
refreshTokenstring required

Example response

{
  "accessToken": "eyJhbGciOiJIUzI1NiIs...",
  "refreshToken": "eyJhbGciOiJIUzI1NiIs..."
}

Changes

Changed in 1 of the 2 revisions of this API.1

    • added the media type application/json for the response with the status 200

      response-media-type-added