Dynamics365ResourceClient allows you to connect to Microsoft Dynamics 365 (Dataverse) and interact with CRM data including accounts, contacts, opportunities, and custom entities.
Usage
Authentication
When creating a Dynamics 365 connector, you need to provide:- Instance URL — your organization’s Dataverse endpoint (e.g.,
https://myorg.crm.dynamics.com) - OAuth Scope — choose your access level:
- Read-only — query Dataverse entities without modification
- Read-write — query and update Dataverse data
- Custom — configure specific permissions manually
Inputs
Theinvoke method accepts the following arguments:
string
required
The HTTP method to use:
"GET", "POST", "PATCH", or "DELETE".string
required
The Dataverse Web API path (e.g.,
/api/data/v9.2/accounts, /api/data/v9.2/contacts).string
required
A unique identifier for this operation.
object
Optional configuration object.
Outputs
The output format is the same as the Custom API client."api"
Discriminator for the response type.
number
The HTTP status code.
ResponseBody
The response body (typically JSON).