Power Automate (WDL) function
triggerOutputs — Power Automate (WDL) function reference
Full outputs of the trigger.
Syntax
wdl
triggerOutputs()
Examples
wdl
triggerOutputs()?['headers']
→ Trigger output
wdl
triggerOutputs()?['headers']?['x-ms-request-id']
→ A header value or null
wdl
triggerOutputs()?['statusCode']
→ 200
Common mistakes & gotchas
- triggerOutputs() includes headers, body, and statusCode, unlike triggerBody() which is only the body — reach for it when you need anything outside the payload itself.
- For a Recurrence trigger there is no meaningful body, so triggerOutputs() mostly yields schedule metadata rather than useful data fields.
Related Workflow Definition Language functions
From Referencing data