Search K
Appearance
Appearance
The D365 Get Record node retrieves a single record from Microsoft Dynamics 365 / Dataverse.
You can look up the record by its unique ID (GUID) or by a name field, and optionally specify which columns to return.
This node is commonly used to:
When added to a workflow, this node presents a configuration form with the following input fields.
| Field | Type | Description | Required | Visible When |
|---|---|---|---|---|
| ServiceAccount - Microsoft Dynamics 365 | Service Account Picker | Select the connected Dynamics 365 service account to authenticate with. | ✅ | Always |
| Entity Type | Text | The logical name of the entity to retrieve the record from (e.g. account, contact, lead, or custom entity name). | ✅ | Always |
| Record Id Or Name | Text | The record identifier (GUID) or logical name value to locate the record. Examples: - By ID: 8a5fdb6e-2f87-4b91-b3f5-22b985efb21c- By Name: Tentech Pty Ltd | ✅ | Always |
| Columns | List of Text | Optional list of field names to return. If left blank, the default set of fields will be retrieved. Example: ["name", "emailaddress1", "telephone1"] | ❌ | Optional |
| Setting | Example Value |
|---|---|
| ServiceAccount - Microsoft Dynamics 365 | DynamicsProdService |
| Entity Type | account |
| Record Id Or Name | 8a5fdb6e-2f87-4b91-b3f5-22b985efb21c |
| Columns | ["name", "accountnumber", "emailaddress1"] |
Result:
Retrieves the specified account record, returning the name, account number, and email address fields.
| Setting | Example Value |
|---|---|
| ServiceAccount - Microsoft Dynamics 365 | DynamicsProdService |
| Entity Type | contact |
| Record Id Or Name | John Smith |
| Columns | ["firstname", "lastname", "emailaddress1", "telephone1"] |
Result:
Retrieves the first contact matching the name “John Smith” and outputs its details as an object.
After successful execution, this node produces the following output variables.
| Output Variable | Type | Description |
|---|---|---|
| D365Record | Object | The retrieved record, containing all selected fields and their values. |
The D365Record object can be referenced in later workflow steps (for example, {D365Record.emailaddress1}).
account record.{D365Record.accountid}) from the output.| Status | Description |
|---|---|
| Completed | Record retrieved successfully. |
| Fail | Record not found, or configuration/connection error occurred. |
If an error occurs, the node fails and returns an explanatory message.
Common issues include:
emailaddress1 instead of “Email Address”.{AccountId}, {ContactName}).D365Record) can contain nested data if related columns are included.Category: Integrations → Microsoft Dynamics 365 Task Name: D365GetRecord