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

# Create contact

`POST /contacts`

Create a new contact in your organization.

## Request body

- object
  - `first_name` string, required — Contact's first name
  - `last_name` string — Contact's last name (optional)
  - `email` string, email — Contact's email address (optional)
  - `phone_number` string, required — Contact's phone number in E.164 format
  - `address` string — Contact's address (optional)
  - `custom_fields` object — Custom fields as key-value pairs. Unknown fields are auto-created with type inferred from the value. Supported value types: string, number, boolean.

## Response `201`

Contact created successfully

- object
  - `ok` boolean
  - `data` object
    - `id` string, uuid
    - `first_name` string
    - `last_name` string
    - `email` string, email
    - `phone_number` string
    - `address` string
    - `last_call_time` string, date-time, nullable

## Other responses

- `400` — Invalid request data
- `401` — Invalid or missing API key
- `403` — Insufficient permissions

---

[API](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1.md) · [All operations](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yourang/yourang-ai-external-api-v1/revisions/49680ee64400/schema)
