v1

latestSwagger 2.02026-08-06291030.8 KB
Auth

Refresh an OAuth2 access token. Rate limit to 10 calls per minute.

Use the refresh token to obtain a new access token. The refresh token must be valid and unexpired.

post/v1/auth/refresh

Request body

refresh_tokenstring required

The refresh token issued during login.

Response

New access token generated successfully.

access_tokenstring

The new JWT token for API access.

token_typestring

The type of token issued.

expires_ininteger

Time in seconds until the access token expires.

Example response

{
  "token_type": "Bearer",
  "expires_in": 3600
}