invoke_function
Invoke Dataverse Web API functions (GET) for read-only operations, bound or unbound, with OData parameters.
Instructions
Invoke a Dataverse Web API function (GET) — bound or unbound. Use for read-only operations exposed as functions, e.g. WhoAmI (unbound) or RetrieveDuplicates. Pass entity_set+id for bound functions, neither for unbound. parameters are inlined into the URL as OData function arguments.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Record GUID the bound function targets. Required iff entity_set is set. | |
| name | Yes | Function name, e.g. 'WhoAmI'. Bare names are namespaced automatically for bound calls; pass a fully-qualified name to override. | |
| entity_set | No | Entity set (plural) for a bound function. Omit for unbound functions. | |
| parameters | No | Function parameters, inlined as OData arguments. Strings are quoted, GUIDs/numbers/booleans passed as-is. |