latestOpenAPI 3.0.02026-08-10416661.5 MB

e96b3e58b041

Authorization

Refresh access token

Access tokens are short lived. This was made deliberately for security.<br><br>This API endpoint is used to exchange a refresh token for an access token when the access token received from the Authorize user API has expired. You will need the client id and the secret which can be found on the OAuth Applications page.

post/oauth/token/refresh

Response

OK

token_typestring text
expires_instring text
access_tokenstring text
refresh_tokenstring text

Example response

{
  "token_type": "Bearer",
  "expires_in": "31536000",
  "access_token": "ouath token string",
  "refresh_token": "ouath token string"
}