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

# Delete Live Update

> Permanently delete a live update. This action cannot be undone. Only users with forceDelete permissions can perform this operation.




## OpenAPI

````yaml /openapi.yaml delete /live-updates/{id}
openapi: 3.0.0
info:
  title: Answering Agent API
  description: API for Answering Agent platform
  version: 1.0.0
servers:
  - url: https://answeringagent.com/api/v1
    description: Production API
  - url: https://playground.answeringagent.com/api/v1
    description: Playground API
security: []
paths:
  /live-updates/{id}:
    delete:
      tags:
        - Live Updates
      summary: Delete Live Update
      description: >
        Permanently delete a live update. This action cannot be undone. Only
        users with forceDelete permissions can perform this operation.
      operationId: deleteLiveUpdate
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: integer
          description: The ID of the live update
      responses:
        '200':
          description: Live update deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Live update permanently deleted successfully.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: Access denied - insufficient permissions or different team
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: This action is unauthorized.
        '404':
          description: Live update not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Live update not found
        '500':
          description: Server error during deletion
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Failed to delete live update. Please try again.
                  errors:
                    type: object
                    properties:
                      general:
                        type: array
                        items:
                          type: string
      security:
        - BearerAuth: []
components:
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: API key is required
                enum:
                  - API key is required
                  - Invalid credentials
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````