RefreshOAuthAccessToken
Exchanges a refresh token for a new access token.
Input
| Name | Type | Required | Description |
| OAuthRefreshToken | String | True | The refresh token returned from the original authorization code exchange. |
Result Set Columns
| Name | Type | Description |
| TokenType | String | The type of the generated token. |
| Scope | String | A string that is a space delimited list of scopes granted to this access token. |
| OAuthAccessToken | String | A token that is used to make requests to the Airtable API on behalf of the user. |
| ExpiresIn | String | Time in seconds until the access token expires. |
| OAuthRefreshToken | String | A token that may be used to obtain a new access token. |
| RefreshExpiresIn | String | Time in seconds until the refresh token expires. |
| State | String | This field indicates any state that may be useful to your application upon receipt of the response. |