Search K
Appearance
Appearance
Updates field values on an existing record in a Microsoft Dynamics 365 / Dataverse entity.
Use this task when a workflow needs to modify data on a record that already exists in Dynamics 365, such as changing a status, updating contact details, or writing back calculated values from earlier workflow steps. The record is identified by its GUID. Optionally, specific fields can be returned after the update to confirm the new values or feed them into downstream tasks.
| Field | Type | Required | Description |
|---|---|---|---|
| Service Account - Microsoft Dynamics 365 | Service Account | Yes | The Dynamics 365 service account used to authenticate with Dataverse. |
| Entity Type | Text | Yes | The logical name of the entity containing the record to update (e.g. account, contact, opportunity). |
| Record Id | Text | Yes | The GUID of the record to update. Must be a valid GUID. |
| Field Mappings | Key-Value Pairs | Yes | The field names and new values to write to the record. Keys must be logical field names. |
| Return Columns | List | No | Optional list of field names to retrieve from the record after the update. |
| Name | Description |
|---|---|
| Record Id | The GUID of the record that was updated. |
| Entity Type | The logical entity name of the updated record. |
| Updated Values | The field values returned after the update. Only present when Return Columns were specified. |