DELETE
/
workflows
/
{workflow_id}
curl -X DELETE \
  -H 'Authorization: Bearer $API_KEY' \
  -H 'Accept: application/json' \
  '$BASE_URL/workflows/$workflow_id'
{
  "workflow": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Deleted Workflow",
    "status": "removed",
    "deleted_at": "2024-12-31T00:00:00Z"
  }
}

Headers

x-api-key
string
required

Your API key. This is required by most endpoints to access the API programmatically. You can view your x-api-key using the 'Profile' tab on the website.

Authorization
string
required

Bearer token for authentication (JWT).

Path Parameters

workflow_id
string
required

The UUID of the workflow you want to delete.

Response

200
application/json
Successful Deletion. The server returns a JSON body about the removed workflow.
workflow
object

The deleted workflow object or confirmation details.