Delete Workflow
Delete an existing workflow using workflow id
Last updated
Delete an existing workflow using workflow id
DELETE /api/workflows/{id}
This endpoint requires API key authentication.
Authorization
Bearer <YOUR_API_KEY>
Your groundcover API key
Accept
*/*
Accept any response format
id
string
The UUID of the workflow to delete
curl -L \
--request DELETE \
--url 'https://api.groundcover.com/api/workflows/{id}' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--header 'Accept: */*'Status Code: 200 OK
Once a workflow is deleted, it cannot be recovered
The deletion is immediate and permanent
All associated workflow executions and history are also removed
The API returns HTTP 200 status code for both successful deletions and "not found" cases
Last updated
{
"message": "OK"
}