Skip to main content

delete_automation

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}
ParameterInTypeRequiredDescription
projectpathstringyesThe project's public id.
automationIdpathstringyesThe automation's public id.
curl -X DELETE -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/automations/$AUTOMATION"

Response

200 OK

{ "ok": true }

Errors

HTTPWhen
404 not_foundNo such project, or no such automation in this workspace.