Skip to main content
Exchange a valid refresh token for a new access token.

POST /auth/core/refresh

Request Body

ParameterTypeRequiredDescription
refresh_tokenstringYesA valid JWT refresh token.

Response

ParameterTypeDescription
access_tokenstringNew short-lived JWT access token.
expires_atintegerTimestamp (ms) when the access token expires.

Example

{
  "refresh_token": "eyJhbGciOiJIUzI1Ni..."
}