For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • DELDelete automations
        • GETGet a single automation by its ID
        • GETList all known automations
        • POSTMigrate agenda jobs
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceAutomation Catalog

Delete automations

Deprecated
DELETE
http://localhost:3000/automation_catalog/automations
DELETE
/automation_catalog/automations
$curl -X DELETE http://localhost:3000/automation_catalog/automations \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "removeCount": 1.1
3}

Deletes automations (based off an array of IDs).

Was this page helpful?
Previous

Get a single automation by its ID

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Request

request body
idslist of stringsOptional

Response

Object containing a property removeCount
removeCountdouble

Errors

500
Internal Server Error