Refresh OAuth Application Access Token#
Overview#
Obtain a new access token using a refresh token without requiring user re-authorization.Refresh OAuth Application Access Token#
Endpoint: POST /oauth-application/refresh-access-tokenAuthentication: Required (Current OAuth Application access token)Authorization: Basic {access_token}
Request Parameters#
| Parameter | Type | Required | Description |
|---|
refresh_token | string | Yes | The refresh token obtained during initial token exchange |
Use Case#
When an OAuth Application's access token expires, use this endpoint to obtain a new access token without going through the full authorization flow again. This provides a seamless experience by maintaining access as long as the refresh token remains valid. The refresh token itself has a longer expiration time than access tokens, allowing extended delegated access.The refresh token must be valid and not expired
After refreshing, store the new access token and use it for subsequent requests
Some implementations may also issue a new refresh token in the response