RefreshOAuthAccessToken
Refreshes an expired OAuth access token using a valid refresh token. Ensures uninterrupted authentication without requiring user reauthorization.
Input
| Name | Type | Description |
| OAuthRefreshToken | String | The refresh token obtained during the initial authorization code exchange. This token is used to request a new access token without requiring user interaction. |
Result Set Columns
| Name | Type | Description |
| OAuthAccessToken | String | The newly issued OAuth access token, used for authentication and API requests. |
| OAuthRefreshToken | String | A new refresh token that can be used to obtain future access tokens. |
| ExpiresIn | String | The duration (in seconds) until the access token expires. |