output dev.
Two Ways to Run Workflows
Choose based on how long your workflow takes and how your application handles responses.Run and Wait (Synchronous)
POST /workflow/run blocks until the workflow completes and returns the result in the response body. Use this when workflows complete quickly (seconds) and your client can wait.
Start and Poll (Asynchronous)
POST /workflow/start returns the workflow ID immediately. Poll for status and retrieve the result when ready. Use this for longer workflows — minutes or more — where blocking a request isn’t practical.
Interacting with Running Workflows
Output supports sending data to running workflows and reading their state via signals, queries, and updates. The workflow must define handlers for these — see External Integration for how to set them up.| Method | What it does | Use case |
|---|---|---|
Signal POST /workflow/:id/signal/:name | Push data into a workflow | Human approval, external events |
Query POST /workflow/:id/query/:name | Read workflow state without changing it | Progress checks, status dashboards |
Update POST /workflow/:id/update/:name | Change state and get confirmation | Configuration changes, priority updates |
Stopping Workflows
PATCH /workflow/:id/stop— Graceful stop. Allows cleanup handlers to run.POST /workflow/:id/terminate— Force terminate. Immediate, no cleanup.
Workflow Discovery
GET /workflow/catalog returns all available workflows with their input and output schemas. Use this to build dynamic UIs or validate inputs before submitting.
Debugging
GET /workflow/:id/trace-log returns the full execution trace for a completed workflow. See Tracing for the trace format.
For remote traces, the API server needs AWS credentials (
OUTPUT_AWS_ACCESS_KEY_ID, OUTPUT_AWS_SECRET_ACCESS_KEY, OUTPUT_AWS_REGION).What’s Next
Configuration
Base URL, ports, and environment variables for the API server.
Authentication
How auth works in development vs production.
Error Responses
Error codes, response format, and how to handle failures.