Skip to main content
POST
Refresh access token

Body

application/json
refresh_token
string
required

The refresh token obtained from login or a previous refresh.

Example:

"eyJhbGciOiJIUzI1NiIs..."

Response

Token refreshed

access_token
string
required

New short-lived JWT access token.

Example:

"eyJhbGciOiJIUzI1NiIs..."

refresh_token
string
required

New refresh token (the previous one is invalidated via token rotation).

Example:

"eyJhbGciOiJIUzI1NiIs..."

expires_in
integer
required

New access token lifetime in seconds.

Example:

3600