RefreshOAuthAccessToken
Refreshes an expired OAuth Access Token to maintain continuous authenticated access to Smartsheet resources without requiring reauthorization from the user.
Stored Procedure Specific Information
To execute this stored procedure, you must specify at least the OAuthClientId and OAuthClientSecret connection properties.
Input
| Name | Type | Required | Description |
| OAuthRefreshToken | String | True | The refresh token issued during the last authentication cycle, required to request a new access token. |
Result Set Columns
| Name | Type | Description |
| OAuthAccessToken | String | The newly generated OAuth Access Token from Smartsheet, enabling authenticated requests to the service's API. |
| OAuthRefreshToken | String | A newly issued OAuth Refresh Token that can be used to renew the access token after its expiration. |
| ExpiresIn | String | The number of seconds remaining until the access token expires and needs renewal. |