# Refresh API token Refreshes a JWT access token using a refresh token. If the refresh token is valid, returns a new JWT and refresh token pair. This maintains an authenticated session without requiring the user to log in again. If the refresh token is invalid, expired, or has been revoked due to rotation limits, the request will fail with an authentication error. Endpoint: POST /resources/auth/v2/api-token/token/refresh Security: bearer ## Request fields (application/json): - `refreshToken` (string, required) ## Response 200 fields (application/json): - `access_token` (string, required) - `refresh_token` (string, required) - `expires_in` (number, required) - `expires` (string, required)