> ## Documentation Index
> Fetch the complete documentation index at: https://docs.claap.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete admin automation

> Permanently delete an admin automation. This action cannot be undone.

Permanently deletes an admin automation. This action cannot be undone.


## OpenAPI

````yaml DELETE /v1/admin-automations/{adminAutomationId}
openapi: 3.1.0
info:
  title: Claap API
  description: Development documentation
  version: 0.0.0
servers:
  - url: https://api.claap.io/
security:
  - ApiKey: []
paths:
  /v1/admin-automations/{adminAutomationId}:
    delete:
      description: Permanently delete an admin automation. This action cannot be undone.
      operationId: deleteV1AdminAutomationsByAdminAutomationId
      parameters:
        - in: path
          name: adminAutomationId
          schema:
            type: string
            description: Admin automation identifier
          required: true
      responses:
        '200':
          description: Admin automation was successfully deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: object
                    properties:
                      ok:
                        type: boolean
                    required:
                      - ok
                required:
                  - result
        '403':
          description: The workspace plan does not include admin automations.
        '404':
          description: >-
            Admin automation was not found. Note that automations that define no
            action at all cannot be accessed through the API and are reported as
            not found.
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-Claap-Key

````