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

# Delete stored action

> Delete an AI Action.

Returns `true` if the action was deleted, `false` if it was not found.



## OpenAPI

````yaml delete /api/v2/ai-actions/{ai_action_id}/
openapi: 3.1.0
info:
  title: Zapier AI Actions API V2
  version: 1.0.0
  description: ''
servers:
  - url: https://actions.zapier.com
security: []
paths:
  /api/v2/ai-actions/{ai_action_id}/:
    delete:
      tags:
        - ai-actions
      summary: Delete AI Action
      description: |-
        Delete an AI Action.

        Returns `true` if the action was deleted, `false` if it was not found.
      operationId: api_ai_actions_delete_ai_action
      parameters:
        - in: path
          name: ai_action_id
          schema:
            title: Ai Action Id
            type: string
          required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                title: Response
                type: boolean
      security:
        - AccessPointApiKeyHeader: []
        - AccessPointOAuth: []
components:
  securitySchemes:
    AccessPointApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
    AccessPointOAuth:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: /oauth/authorize/
          tokenUrl: /oauth/token/
          scopes:
            nla:exposed_actions:execute: Run AI Actions
            openid: OpenID Connect scope

````