---
title: "Create contact"
method: POST
path: "/v1/contacts"
---

# Create contact

`POST /v1/contacts`

Create a new contact with one or more communication channels.

## Request body

- ContactCreateRequest — Request body to create a contact with channels.
  - `displayName` string — Display name for the contact.
  - `channels` ContactChannelInput[], required — Communication channels for the contact.
    - `channel` 'sms' | 'whatsapp' | 'email' | 'telegram' | 'instagram' | 'messenger' | 'voice', required — Channel type.
    - `identifier` string, required — Channel identifier (phone number in E.164 format or email address).
    - `countryCode` string — ISO country code for phone numbers.
    - `label` string — Optional label for the channel.
    - `isPrimary` boolean — Whether this should be the primary channel for its type.
  - `metadata` object — Arbitrary metadata to associate with the contact.

## Response `201`

Contact created.

- Contact
  - `id` string, required
  - `displayName` string — Display name for the contact.
  - `phoneNumber` string — DEPRECATED: Use primaryPhone instead. Primary phone number in E.164 format.
  - `primaryPhone` string — Primary phone number in E.164 format.
  - `primaryEmail` string, email — Primary email address.
  - `countryCode` string
  - `profileName` string, nullable — Contact's WhatsApp profile name. Only available for WhatsApp contacts.
  - `availableChannels` string[], required — List of available messaging channels for this contact.
  - `defaultChannel` 'sms' | 'whatsapp' | 'telegram' | 'email' | 'instagram' | 'messenger' | 'voice' — Preferred channel for this contact.
  - `verified` boolean, required — Whether this contact has been verified.
  - `channels` ContactChannel[] — All communication channels for this contact.
    - `id` string, required
    - `channel` 'sms' | 'whatsapp' | 'email' | 'telegram' | 'instagram' | 'messenger' | 'voice', required — Channel type.
    - `identifier` string, required — Channel identifier (phone number or email address).
    - `countryCode` string — ISO country code for phone numbers.
    - `label` string — Optional label for the channel.
    - `isPrimary` boolean, required — Whether this is the primary channel for its type.
    - `verified` boolean, required — Whether this channel has been verified.
    - `metrics` object — Delivery metrics for this channel.
      - `successCount` integer
      - `failureCount` integer
      - `totalAttempts` integer
      - `avgDeliveryTimeMs` number
      - `lastSuccessAt` string, date-time
    - `lastInboundAt` string, date-time — Last time a message was received on this channel.
    - `metadata` object
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time
  - `metadata` object, required
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time

## Other responses

- `400` — Invalid request.
- `401` — Unauthorized.

## Changes

- **2026-08-20** `bae0dfda726a` — 1 warning
  - removed the optional property `suggestedMergeWith` from the response with the `201` status
- **2026-07-07** `f467a4da6cd2` — 1 warning, 1 info
  - added the new `instagram` enum value to the `channels/items/channel` response property for the response status `201`
  - added the new `instagram` enum value to the request property `channels/items/channel`
- **2026-06-18** `a817a073a07f` — 2 warning, 1 info
  - added the new `messenger` enum value to the `channels/items/channel` response property for the response status `201`
  - added the new `messenger` enum value to the `defaultChannel` response property for the response status `201`
  - added the new `messenger` enum value to the request property `channels/items/channel`

[Change history](https://skmtc.dev/zavudev/apis/zavu-unified-messaging-layer-api/changes/v1/contacts/post.md)

---

[API](https://skmtc.dev/zavudev/apis/zavu-unified-messaging-layer-api.md) · [All operations](https://skmtc.dev/zavudev/apis/zavu-unified-messaging-layer-api/llms.txt) · [OpenAPI document](https://skmtc.dev/zavudev/apis/zavu-unified-messaging-layer-api/revisions/b343da23d9f4?raw)
