Action References
ParallelAction
ParallelAction
Purpose Run several independent actions concurrently, sharing the same input context.
When to use it
- Combine fetches or remote calls that don’t depend on each other
Key fields
| Field | Type | Description |
|---|---|---|
actions | [String] | Action IDs to execute concurrently. |
Example
{
"id": "a340-parallel-fetches",
"name": "fetchAllEnrichments",
"actions": ["a10-fetch-customer", "a30-fetch-task-stats"]
}
Notes
- Nested
ParallelAction/LoopActionis supported. - Be mindful of resource contention (DB limits, external rate limits).
- Combine with
onActionError: completeApifor non-critical branches.
Was this page helpful?
Built with Documentation.AI
Last updated Jan 3, 2026