https://api.thygon.com
Workflows
Create workflow
POST /workflows
Upload a new automation workflow graph definition.
Request body:
List workflows
GET /workflows
Get workflow details
GET /workflows/{id}
Update workflow definition
PUT /workflows/{id}
Delete workflow
DELETE /workflows/{id}
Trigger executions
Trigger workflow run
POST /workflows/{id}/trigger
Queue a workflow execution asynchronously. This endpoint creates a new Run record with status PENDING and returns immediately.
Request body:
Run management
Create and queue a run directly
POST /workflows/runs
Request body:
List runs
GET /workflows/runs
Get run details
GET /workflows/runs/{id}
Fetch execution details, node transition progress, and status logs for a specific run.
Response (200 OK):