Overview
JSONPath is used inside expression contexts such asTRIGGER and ACTIONS.<ref>.result to access nested fields and arrays.
Field access
Use dot notation for nested fields.Array access
Use brackets to access array items.Wildcards
Use[*] to select all items in an array.
Filters
Use filters to select matching items.Return behavior
- Single matches return a scalar.
- Wildcards return a list.
- Filters return a list.
Examples
Trigger data:Related pages
- See Expressions for expression syntax and contexts.
- See Functions for helper functions you can use alongside JSONPath access.