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

# Delete Contact

> Delete a contact from your Novacal account.

## What this endpoint is for

Permanently remove a contact from your account. This does not delete any events the person booked.

## Access

You can only delete your own contacts. Deleting another account's contact returns `403 access_denied`.


## OpenAPI

````yaml DELETE /v1/contacts/{id}
openapi: 3.1.0
info:
  title: Events API
  description: Public API for managing event types
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.novacal.io
security:
  - bearerAuth: []
paths:
  /v1/contacts/{id}:
    delete:
      description: Deletes a contact.
      parameters:
        - name: id
          in: path
          description: ID of the contact to delete
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '204':
          description: Contact deleted
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````