Orchestration Template
Use this template when one API request must call multiple backends and return a single response.
Default pattern
http_trigger -> http_request_node (A) -> http_request_node (B) -> merge_node -> response_node
Configure
- Set backend URLs and methods on both
http_request_nodes. - Map payload fields into each backend call.
- Merge selected fields in
merge_node/set_node. - Return normalized output in
response_node.
Verify
- Success path returns combined payload
- One backend failure triggers expected fallback/error handling