RefreshOAuthAccessToken
Refreshes an expired OAuth Access Token to maintain continuous authenticated access to Salesforce resources without requiring reauthorization from the user.
Input
| Name | Type | Description |
| OAuthRefreshToken | String | The OAuth Refresh Token obtained during the initial authorization, used to request a new access token when the original has expired. |
Result Set Columns
| Name | Type | Description |
| Instance_Url | String | The base URL of the Salesforce instance that the new OAuth access token is valid for. This is used as the endpoint for subsequent API requests. |
| OAuthAccessToken | String | The newly issued OAuth Access Token, required for authenticating subsequent API requests. |
| Id | String | The Salesforce user ID associated with the OAuth access token. |
| Issued_At | String | The timestamp indicating when the new access token was issued. |
| Signature | String | A digital signature used to validate the authenticity of the access token. |
| ExpiresIn | String | The duration, in seconds, until the newly issued access token expires. |