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

jsonPower Automate (WDL) function reference

Parse a JSON string to an object.

Syntax

wdl
json(value)

Examples

wdl
json(triggerBody())
An object

Needed when the HTTP action's body arrives as a raw string rather than a parsed object.

wdl
json(outputs('HTTP_Request')?['body'])
A parsed object
wdl
json('{"key":"value"}')
{"key":"value"} as an object

Common mistakes & gotchas

Related Workflow Definition Language functions

From Type conversion

Used in these tutorials

← Back to the Power Automate (WDL) cheat sheet