Skip to main content
DELETE
/
api
/
workflows
/
{id}
Delete Workflow
curl --request DELETE \
  --url https://encrata.com/api/workflows/{id} \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.encrata.com/llms.txt

Use this file to discover all available pages before exploring further.

Authentication

Requires a JWT token or API key in the Authorization header.
Authorization: Bearer YOUR_TOKEN

Request

id
string
required
The workflow ID to delete.

Example request

curl -X DELETE "https://encrata.com/api/workflows/wf_abc123" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

{
  "success": true,
  "message": "Workflow deleted"
}