Get a new auth token using a refresh token.

post/refresh-token

Request body

refresh_tokenstring required

The refresh token retrieved from an authentication endpoint.

Response

Refresh token response. If SECURITY_REFRESH_TOKEN_COOKIE_NAME is configured, the response will NOT include the refresh token. The refresh token will be stored in a cookie.

Example response

{
  "meta": {
    "code": 200
  }
}

Changes