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

# Delete AI Suggestion

> Delete (dismiss) an AI suggestion. This marks the suggestion as ignored and it will no longer appear in the suggestions list.



## OpenAPI

````yaml delete /api/v2/ai-suggestions/{suggestionId}
openapi: 3.0.1
info:
  title: LiveChatAI API v2
  description: >-
    LiveChatAI API v2 - Build powerful AI-powered customer support experiences.
    This API follows REST principles with predictable, resource-oriented URLs,
    JSON responses, and standard HTTP methods.
  version: 2.0.0
servers:
  - url: https://app.livechatai.com
    description: Production server
security:
  - bearerAuth: []
paths:
  /api/v2/ai-suggestions/{suggestionId}:
    delete:
      tags:
        - AI Suggestions
      summary: Delete AI Suggestion
      description: >-
        Delete (dismiss) an AI suggestion. This marks the suggestion as ignored
        and it will no longer appear in the suggestions list.
      parameters:
        - in: path
          name: suggestionId
          schema:
            type: string
            example: msg_1234567890abcdef
          required: true
          description: The unique identifier of the AI suggestion to delete
      responses:
        '200':
          description: Successfully deleted the AI suggestion
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  data:
                    type: object
                    properties:
                      message:
                        type: string
                        example: Suggestion deleted successfully
        '401':
          description: Unauthorized - invalid or missing API token
        '404':
          description: Suggestion not found
        '429':
          description: Rate limit exceeded - Too many requests to V2 API
        '500':
          description: Internal server error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````