Operations (sample payloads)

Main operations

Format response

Trigger a workflow from another workflow and return response to the caller workflow Sample Input

{
    "response": {
        "status": "success",
        "data": {
            "orderId": "ORD-12345",
            "customerName": "John Doe",
            "totalAmount": 99.99,
            "items": [
                \{
                    "productId": "PROD-001",
                    "name": "Widget A",
                    "quantity": 2,
                    "price": 24.99
                \},
                \{
                    "productId": "PROD-002",
                    "name": "Gadget B",
                    "quantity": 1,
                    "price": 50.01
                \}
            ]
        },
        "message": "Order processed successfully"
    }
}

Sample Output

{}

Was this page helpful?