Cheat Sheets/Power Automate/removeProperty
Power Automate (WDL) function

removePropertyPower Automate (WDL) function reference

Drop a field.

Syntax

wdl
removeProperty(object, property)

Examples

wdl
removeProperty(item(), 'Temp')
New object

Useful before forwarding a payload to an external system.

wdl
removeProperty(triggerBody(), 'InternalNotes')
The trigger body without the InternalNotes field
wdl
removeProperty(setProperty(item(), 'Status', 'Archived'), 'TempFlag')
The item updated and cleaned up in one expression

Common mistakes & gotchas

Related Workflow Definition Language functions

From Objects & JSON

← Back to the Power Automate (WDL) cheat sheet