v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Authentication

Refresh a Token

Generate a new token pair based on a refresh token.

post/v1/oauth/refresh-token

Request body

refresh_tokenstring required

The refresh_token received from the Issue a token endpoint.

Response

Token issued successfully

access_tokenstring
access_token_ttlstring date-time
refresh_tokenstring
refresh_token_ttlstring date-time
current_timestring date-time

Example response

{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "access_token_ttl": "2025-12-28 10:34:45+00",
  "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "refresh_token_ttl": "2025-12-28 10:34:45+00",
  "current_time": "2025-12-21 10:34:45+00"
}