Skip to content

workflow_disabled

HTTP status: 409 Conflict

  1. Open the workflow in the dashboard. Under Workflows → <your workflow>, the header carries an Enabled/Disabled toggle. Flip it.
  2. Or via API: PATCH /api/v1/workflows/{id} with body { "enabled": true }.
  3. Confirm the state took by fetching GET /api/v1/workflows/{id} and checking enabled: true in the response.
  4. Retry the submission that failed with this code — once the workflow is re-enabled, the same payload succeeds.

The workflow exists and is valid, but its owner explicitly disabled it. We block job submissions against disabled workflows so that pausing a workflow during an incident actually stops new work from queuing up. This is distinct from not_found (workflow deleted) and invalid_workflow (workflow shape broken).

Contact support with your request_id (looks like req_01HF3JKB...). We'll confirm the workflow's enabled state in our logs.