GetOAuthAuthorizationUrl
Retrieves the OAuth Authorization URL, allowing the client to direct the user's browser to the authorization server and initiate the OAuth process. Only used for the AzureAD AuthScheme.
Input
| Name | Type | Description |
| CallbackUrl | String | The URL to redirect the user to after they authorize the app. This must match the redirect URI configured in your Intacct app settings. |
| State | String | Indicates any state which may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to the Sage Intacct authorization server and back. Uses include redirecting the user to the correct resource in your site, nonces, and cross-site-request-forgery mitigations. |
| Scope | String | A comma-separated list of permissions to request from the user. Please check the Sage Intacct API for a list of available permissions. |
Result Set Columns
| Name | Type | Description |
| Url | String | The authorization URL the user should visit to grant access. |