POST
/
api
/
v1
/
flows
/
executions
/
bulk
Bulk Execute Flows
curl --request POST \
  --url https://agent-studio.thena.ai/api/v1/flows/executions/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "flow_ids": [
    "<string>"
  ],
  "trigger_type": "manual",
  "variables": {},
  "priority": "normal",
  "metadata": {}
}'
{
  "total_requested": 123,
  "successful_queued": 123,
  "failed_queued": 123,
  "execution_ids": [
    "<string>"
  ],
  "errors": [
    "<string>"
  ]
}

Authorizations

x-api-key
string
header
required

Body

application/json

Request for bulk flow execution.

Response

200
application/json

Successful Response

Response for bulk execution operations.