Skip to content

D365 Delete Record ​

Deletes a single record from a Microsoft Dynamics 365 / Dataverse entity by ID or name.

Purpose ​

Use this task when a workflow needs to permanently remove a record from Dynamics 365, such as cleaning up temporary records, removing duplicates, or archiving data as part of a broader process. The task accepts either a GUID or a record name — if a GUID is supplied it is used directly; otherwise the task attempts a name-based lookup before deleting.

Inputs ​

FieldTypeRequiredDescription
Service Account - Microsoft Dynamics 365Service AccountYesThe Dynamics 365 service account used to authenticate with Dataverse.
Entity TypeTextYesThe logical name of the entity from which the record will be deleted (e.g. account, contact, lead).
Record IdTextYesThe GUID or logical name of the record to delete. If the value is a valid GUID it is used directly; otherwise a name-based lookup is performed.

Outputs ​

NameDescription
Deleted IdThe GUID or name of the record that was deleted.
Entity TypeThe logical entity name from which the record was deleted.

Tentech