Runs
Start a connector route run
Starts a route run and returns the accepted execution record. The optional input can carry lookup keys, batch references, dry-run flags, or caller metadata. Long-running execution is observed through the runs, events, and dead-letter endpoints.
post/routes/{routeId}/runs
Path parameters
routeIdstring uuid required
Stable identifier for a connector route.
Example:1e8ff011-2274-4f16-a7dd-bf0b4fd5262f
Stable identifier of a connector route that composes a source operation, destination operation, optional transformation, and trigger policy.
Request body
Example request
{
"input": {
"batch_ref": "vault://imports/license-batches/batch-2026-06-18.csv"
},
"dryRun": false,
"correlationId": "import-2026-06-18-001",
"metadata": {
"initiated_by": "admin@example.com"
}
}Response
Connector route run accepted.
Example response
{
"runId": "9a785884-63ea-4b07-9976-264a1fc595f1",
"routeId": "1e8ff011-2274-4f16-a7dd-bf0b4fd5262f",
"connectorInstanceId": "3f6f4f46-24fb-4c35-a7a4-bc6c7f7861f5",
"connectorResourceId": "8d228f50-a86c-4d5f-9eb4-83fdad7d75fa",
"operationKind": "READ",
"triggerKind": "ON_DEMAND",
"status": "PARTIALLY_FAILED",
"startedAt": "2026-06-18T10:20:00Z",
"finishedAt": "2026-06-18T10:21:12Z",
"itemCount": 250,
"successCount": 247,
"failureCount": 3,
"correlationId": "import-2026-06-18-001",
"metadata": {
"batch_ref": "vault://imports/license-batches/batch-2026-06-18.csv"
}
}