Delete Automation

Delete an automation by ID.


DELETE
/automations/{id}

Authorization

AuthorizationRequiredBearer <token>

See API Security for more details.

In: header

Path Parameters

idRequiredstring

Response Body

Accepted

TypeScript Definitions

Use the response body type in TypeScript.

metaobject
dataobject
errorobject | null | null
linksobject
fetch("https://api.ittybit.com/automations/auto_abcdefgh1234", {
  headers: {
    "Authorization": "Bearer <token>"
  }
})
{
  "meta": {
    "request_id": "req_abcdefghij1234567890",
    "org_id": "org_abcdefgh1234",
    "project_id": "prj_abcdefgh1234",
    "version": "2025-01-01",
    "type": "object"
  },
  "data": {
    "message": "Automation auto_abcdefgh1234 deleted"
  },
  "error": null,
  "links": {
    "parent": "https://api.ittybit.com/automations"
  }
}