Action: Post Result (PostResult)
Sends the execution result via HTTP POST
📖 Description
The PostResult
action serializes the flow execution result into JSON and sends it to the specified URL using an HTTP POST request.
This allows data to be passed to external systems, APIs, or storage services.
🧩 Structure
Field | Type | Required | Description |
---|---|---|---|
targetUrl |
string | Full URL where the result will be sent. Example: https://api.example.com/report . | |
store |
StoreType[] | List of stores whose data will be included in the result (e.g. Script, Flow, Page). |
📋 Example
{ "action": "PostResult", "targetUrl": "https://api.example.com/report", "store": ["Script", "Flow"] }
📄 Site updated: 17.06.2025 00:01