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

# Deletes a contact detail by its ID.



## OpenAPI

````yaml https://raw.githubusercontent.com/FooBarBizarre/docs/refs/heads/main/api-reference/openapi.json delete /contact-details/{id}
openapi: 3.0.1
info:
  title: Maia Backend API
  version: v1
servers: []
security: []
paths:
  /contact-details/{id}:
    delete:
      tags:
        - ContactDetail
      summary: Deletes a contact detail by its ID.
      parameters:
        - name: id
          in: path
          description: The unique identifier of the contact detail to delete.
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: OK
        '204':
          description: Contact detail deleted successfully.
        '400':
          description: Error occurred while deleting the contact detail.
        '404':
          description: Contact detail not found.

````