---
title: "Create Contact"
method: POST
path: "/v1/contacts"
tags: ["contacts"]
---

# Create Contact

`POST /v1/contacts`

Create a new contact.

Phone number is normalized to E.164 format. Returns 409 if a contact
with this phone number already exists for the project.

## Request body

- CreateContactRequest
  - `phoneNumber` string, required
  - `name` string, required
  - `email` string, nullable
  - `notes` string, nullable

## Response `201`

Successful Response

- ContactResponse
  - `id` string, required
  - `phoneNumber` string, required
  - `name` string, required
  - `email` string, nullable
  - `notes` string, nullable
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, required

## Other responses

- `422` — Validation Error

---

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