Skip to main content
DELETE
/
workflows
/
{workflow_id}
Delete Workflow
curl --request DELETE \
  --url https://api.example.com/workflows/{workflow_id}
Permanently deletes a workflow and all associated data.

Path Parameters

workflow_id
string
required
Unique identifier of the workflow to delete

Response

Returns 204 No Content on success.

Example Request

curl -X DELETE https://api.chronoverse.com/workflows/wf_1234567890abcdef \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Notes

  • This operation is irreversible. Once deleted, the workflow and its data cannot be recovered
  • Consider terminating the workflow first if you want to preserve the workflow data while stopping execution
  • All associated job history and execution logs will also be deleted

Build docs developers (and LLMs) love