v1

latestOpenAPI 3.0.02026-08-0645062.8 KB

Refresh access token

Refresh the access token using the refresh token.

post/oauth/refresh

Response

Access token refreshed successfully

access_tokenstring
token_typestring
refresh_tokenstring
expires_innumber

Example response

{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "token_type": "Bearer",
  "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "expires_in": 3600
}