Expand description
§Parse Function Module
This module provides parsing capabilities for converting payload data into structured context data. It supports JSON and XML parsing, allowing workflows to start by loading payload into the context where it can be accessed by subsequent tasks.
§Features
- Parse JSON payload into data field
- Parse XML payload into JSON data field
- Support for nested source paths (payload.body, data.field)
- Automatic change tracking for audit trails
§Example Usage
{
"name": "parse_json",
"input": {
"source": "payload",
"target": "input_data"
}
}Structs§
- Parse
Config - Configuration for parse functions.
Functions§
- execute_
parse_ json - Execute parse_json operation.
- execute_
parse_ xml - Execute parse_xml operation.