---
title: "Delete the contact"
method: DELETE
path: "/contacts/{id}"
tags: ["Contact"]
---

# Delete the contact

`DELETE /contacts/{id}`

Delete the contact of the given ID.

## Path parameters

- `id` string, required

## Response `200`

Successful response.

- ContactManagerContact
  - `id` string, uuid — Unique identifier for the contact.
  - `customer_id` string, uuid — Unique identifier of the associated customer.
  - `first_name` string — First name of the contact.
  - `last_name` string — Last name of the contact.
  - `display_name` string — Display name of the contact.
  - `company` string — Company name associated with the contact.
  - `job_title` string — Job title of the contact.
  - `source` 'manual' | 'import' | 'api' | 'sync' — Source of the contact.
  - `external_id` string — External identifier for the contact.
  - `addresses` ContactManagerAddress[] — List of addresses (tel or email) associated with the contact.
    - `id` string, uuid — Unique identifier for the address.
    - `type` 'tel' | 'email' — Type of the address.
    - `target` string — The address value. E.164 format for tel, email address for email.
    - `is_primary` boolean — Indicates if this is the primary address for the given type.
    - `tm_create` string, date-time — Timestamp when the address was created.
  - `tag_ids` string[] — List of tag IDs associated with the contact.
  - `tm_create` string, date-time — Timestamp when the contact was created.
  - `tm_update` string, date-time — Timestamp when the contact was last updated.
  - `tm_delete` string, date-time — Timestamp when the contact was deleted.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

## Changes

- **2026-06-30** `a689a6407360` — 2 warning, 1 info
  - removed the optional property `emails` from the response with the `200` status
  - removed the optional property `phone_numbers` from the response with the `200` status
  - added the optional property `addresses` to the response with the `200` status
- **2026-06-27** `30dd625c7515` — 1 warning
  - removed the optional property `phone_numbers/items/number_e164` from the response with the `200` status
- **2026-05-30** `995c56ba9219` — 2 warning, 2 info
  - removed the optional property `addresses` from the response with the `200` status
  - removed the optional property `notes` from the response with the `200` status
  - added the optional property `emails` to the response with the `200` status
  - added the optional property `phone_numbers` to the response with the `200` status

[Change history](https://skmtc.dev/voipbin/apis/voipbin-api/changes/contacts/:id/delete.md)

---

[API](https://skmtc.dev/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.dev/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/revisions/a689a6407360/schema)
