For the complete documentation index, see llms.txt. This page is also available as Markdown.

delete_automation

Delete an automation and its history.

Delete an automation and its firing history. Irreversible — to stop an automation temporarily, update_automation with enabled: false instead.

Request

DELETE /api/v1/ops/projects/{project}/automations/{automationId}
Parameter
In
Type
Required
Description

project

path

string

yes

The project's public id.

automationId

path

string

yes

The automation's public id.

curl -X DELETE -H "Authorization: Bearer $TESTVIBE_API_KEY" \
  "$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/automations/$AUTOMATION"
testvibe automations delete $AUTOMATION

Tool delete_automation{ "automationId": "a1b2c3d4-…" }. Marked destructive.

Response

200 OK

{ "ok": true }

Errors

HTTP
When

404 not_found

No such project, or no such automation in this workspace.

Last updated

Was this helpful?