---
title: "Create a contact"
method: POST
path: "/numbers/contacts"
tags: ["Contacts"]
---

# Create a contact

`POST /numbers/contacts`

Adds a contact to the authenticated owner's address book. `phoneNumber` is normalized to E.164 before storage and the uniqueness check. 409 if this owner already has a contact with the same normalized phoneNumber.

## Request body

- CreateContactInput
  - `name` string, required
  - `phoneNumber` string, required — Normalized to E.164 (spaces/dashes/dots stripped); rejected with 400 if it doesn't validate as E.164 afterward.

## Response `201`

Contact created

- object
  - `data` PublicContact, required
    - `id` string, uuid, required
    - `name` string, required
    - `phoneNumber` string, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `409` — Conflict
- `500` — Internal Server Error

## Changes

- **2026-08-13** `02da4f9ce3fd` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/droidrun/apis/droidrun-cloud/changes/numbers/contacts/post.md)

---

[API](https://skmtc.dev/droidrun/apis/droidrun-cloud.md) · [All operations](https://skmtc.dev/droidrun/apis/droidrun-cloud/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/droidrun/droidrun-cloud/revisions/02da4f9ce3fd/schema)
