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

# Delete Contact

Deletes a contact permanently.


## OpenAPI

````yaml delete /contacts/{id}
openapi: 3.0.3
info:
  title: Contacts API
  version: 1.0.0
  description: API for managing contacts
servers:
  - url: https://api.arnio.co/api/v1
security:
  - ApiKeyAuth: []
paths:
  /contacts/{id}:
    delete:
      tags:
        - Contacts
      summary: Delete contact
      responses:
        '200':
          description: Contact deleted
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Provide your API key

````