Start executing a saved Komos task.
taskId — UUID for the saved task.inputs (object, optional) — Key/value overrides that map to the task’s declared inputs. Any
keys omitted fall back to defaults defined in the task.clientRequestId (string, optional) — Supply a unique value per task to make the request
idempotent. Repeating the same value returns 200 OK with the previously created run.202 Accepted — The run was created and queued for execution. The payload contains the run
resource with status: "PENDING".200 OK — A run with the supplied clientRequestId already exists; the response returns the
existing run without enqueuing another execution.400 Bad Request — Invalid task ID or payload shape.401 Unauthorized — Missing or malformed API key.402 Payment Required — Your organization exhausted its run allotment; the response includes
usage details.404 Not Found — The task does not exist or is not accessible to the current organization.503 Service Unavailable — A transient queue error prevented dispatch; retry with exponential
backoff.GET /public/v1/task-runs/{runId} or subscribe to
task-run.* webhooks to follow execution.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
UUID of the Komos task to execute.
Existing run returned because the clientRequestId was reused.