GetOAuthAuthorizationUrl
Retrieves the OAuth Authorization URL, allowing the client to direct the user's browser to the authorization server and initiate the OAuth process.
Input
| Name | Type | Required | Description |
| CallbackURL | String | False | The endpoint URL to which the user will be redirected after completing the authorization process. Ensure this matches the URL registered with the service to avoid errors. |
| State | String | False | An optional value your application sends to maintain state between the request and callback. Useful for ensuring the response is tied to a specific request, mitigating CSRF attacks, or handling user-specific workflows after redirection. |
| Prompt | String | False | Specifies the authentication prompt behavior. Options include 'select_account' (prompt user to choose an account), 'None' (no prompt), 'login' (force user to re-enter credentials), or 'consent' (display permissions grant dialog). |
Result Set Columns
| Name | Type | Description |
| Url | String | The URL generated by the OAuth provider that users must visit to grant authorization to your application. Typically includes query parameters for callback, state, and scope. |