Endpoint
bulk_id so you can track them together.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workflowID | string | Yes | Workflow UUID |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
version_id | string | No | Specific version to trigger (defaults to latest) |
inputs | array | Yes | Array of input objects (1–10 items) |
webhook_url | string | No | URL to receive completion notifications |
Code Examples
Response
Status:202 Accepted
Partial Failures
Some executions may succeed while others fail. That’s totally fine! Failed entries will havestatus: "failed" with an error message and no execution_id.
Tracking Bulk Executions
Use thebulk_id to list all executions from a bulk operation:
Error Responses
| Status | Body | Description |
|---|---|---|
400 | {"error": "inputs must contain 1–10 items"} | Invalid inputs count |
401 | {"error": "Invalid or missing API key"} | Authentication failure |
404 | {"error": "workflow not found"} | Invalid workflow ID |