Frends.MicrosoftDynamics365.Request / 1.1.0
Summary
Reaches a Dynamics 365 instance's Web API with an application identity and returns the response. A pass-through, so any entity or action the instance exposes is in scope.
Typical use — reading and writing Dynamics records from a Process, where a Task per entity would never cover a customised instance
Input class contains parameters that are required.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| ClientId | String |
– | 9136e6a2-83e5-46ba-b104-d988a169dc24 |
Azure AD app registration client ID. |
| TenantId | String |
– | 9136e6a2-83e5-46ba-b104-d988a169dc24 |
Azure AD tenant ID. |
| ClientSecretSecret | String |
– | my_secret |
App registration client secret. |
| Dynamics365Url | String |
https://[MY_ORG].crm4.dynamics.com |
https://my-org.crm4.dynamics.com |
Dynamics 365 URL. |
| Method | Method |
GET |
GET |
Dynamics 365 URL. Possible values:
|
| Path | String |
– |
accounts
accounts({{account_id}})
accounts?$select=name,revenue
accounts?$filter=statecode eq 0
|
Request path for the API call. |
| Payload | String |
– | {
"firstname": "John",
"lastname": "Doe",
"emailaddress1": "john.doe@example.com",
"telephone1": "123-456-7890"
} |
Request payload. |