---
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.
  - `notes` string — Free-form notes about the contact. May include call summaries, preferences, or special instructions.
  - `addresses` ContactManagerAddress[] — List of addresses (tel or email) associated with the contact.
    - `type` '' | 'agent' | 'conference' | 'email' | 'extension' | 'line' | 'sip' | 'tel' | 'web_session' — Type of address.
    - `target` string — The address endpoint. Format depends on type: phone number for tel (e.g. +14155551234), UUID for agent/conference/extension, email for email, SIP URI for sip.
    - `target_name` string — Address's name.
    - `name` string — Optional label for this address.
    - `detail` string — Additional notes about this address.
    - `id` string, uuid — Unique identifier for the address.
    - `contact_id` string, uuid — Unique identifier of the contact this address belongs to.
    - `customer_id` string, uuid — Unique identifier of the customer this address belongs to.
    - `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).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/versions/79e779080bcc/schema)
