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

# Delete Reply

> Deletes a reply with the given ID.



## OpenAPI

````yaml DELETE /reply
openapi: 3.0.1
info:
  title: Reply API
  version: 1.0.0
  description: API for creating and deleting reply
servers:
  - url: https://our-secret-api-url.com
security: []
paths:
  /reply:
    delete:
      summary: Delete a reply
      description: Deletes a reply with the given ID.
      parameters:
        - $ref: '#/components/parameters/X-API-KEY'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: ID of the reply to be deleted
              required:
                - id
      responses:
        '200':
          description: Post deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: ID of the deleted post
                  parentId:
                    type: integer
                    nullable: true
                    description: ID of the parent post, if applicable
                nullable: true
        '500':
          description: Internal Server Error - Failed to delete reply
      security:
        - bearerAuth: []
components:
  parameters:
    X-API-KEY:
      name: X-API-KEY
      description: API key required for authentication
      in: header
      required: true
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````