Refresh access token
Auth
Refresh access token
Exchanges a valid refresh token for a new access/refresh token pair. The old refresh token is invalidated (token rotation). If the refresh token has been used before or is blacklisted, returns 401.
POST
Refresh access token
Documentation Index
Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt
Use this file to discover all available pages before exploring further.
Body
application/json
The refresh token obtained from login or a previous refresh.
Example:
"eyJhbGciOiJIUzI1NiIs..."
Response
Token refreshed
New short-lived JWT access token.
Example:
"eyJhbGciOiJIUzI1NiIs..."
New refresh token (the previous one is invalidated via token rotation).
Example:
"eyJhbGciOiJIUzI1NiIs..."
New access token lifetime in seconds.
Example:
3600
