Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the server beyond simple SELECT/INSERT/UPDATE/DELETE operations with Microsoft Dynamics 365 Business Central.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Microsoft Dynamics 365 Business Central, along with an indication of whether the procedure succeeded or failed.
CData MCP Server for Microsoft Dynamics 365 Business Central Stored Procedures
| Name | Description |
| GetAdminConsentURL | Generates the admin consent URL required for granting application access to a specified domain. An administrator must open this URL separately to authorize the application when using custom OAuth credentials. |
| GetOAuthAccessToken | Fetches the OAuth Access Token, which is used to authenticate and authorize API calls made to Dynamics 365 Business Central. |
| GetOAuthAuthorizationUrl | Retrieves the OAuth Authorization URL, allowing the client to direct the user's browser to the authorization server and initiate the OAuth process. |
| RefreshOAuthAccessToken | Refreshes an expired OAuth Access Token to maintain continuous authenticated access to Dynamics 365 Business Central resources without requiring reauthorization from the user. |
| RequestRawValue | Request the raw value of a property by providing the full path to the resource. Be it a primitive type or a binary stream. |