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

# Create contact

`POST /contacts`

Create contact

## Request body

- object
  - `email` string, required — Contact email
  - `first_name` string — Contact first name
  - `last_name` string — Contact last name
  - `title` string — Contact job title
  - `city` string — Contact city
  - `state` string — Contact state or region
  - `country` string — Contact country
  - `industry` string — Contact industry
  - `linkedin_url` string, uri — Contact LinkedIn profile URL
  - `owner_email` string — Email of the Amplemarket user that should own the contact
  - `account_id` string, uuid — Prospect Hub account public ID to associate to the contact
  - `crm_account_id` string — CRM account identifier used to resolve the Prospect Hub account association
  - `company_domain` string — Company domain used to resolve the Prospect Hub account association
  - `company_name` string — Company name used as a fallback to resolve the Prospect Hub account association
  - `phone_numbers` object[] — Phone numbers to attach to the contact as user-uploaded numbers
    - `number` string — Phone number in raw or international format
    - `kind` 'mobile' | 'office' | 'phone' | 'landline' | 'voip' | 'direct' | 'fax' — Phone number kind
    - `type` 'mobile' | 'office' | 'phone' | 'landline' | 'voip' | 'direct' | 'fax' — Alias for kind

## Response `201`

Created

- ResponseContactWithActivityObject
  - `id` string, uuid, required
  - `name` string, nullable
  - `first_name` string, nullable
  - `last_name` string, nullable
  - `email` string, nullable, required
  - `linkedin_url` string, uri, nullable
  - `title` string, nullable
  - `location` string, nullable
  - `time_zone` string, nullable
  - `company_name` string, nullable
  - `company_domain` string, nullable
  - `owner` string, nullable
  - `last_contacted_at` string, date_time, nullable
  - `phone_numbers` ResponsePhoneNumberObject[]
    - `object` 'phone_number', required
    - `id` string, uuid, required
    - `number` string, required
    - `type` 'mobile' | 'office' | 'phone' | 'landline' | 'voip' | 'direct', required
    - `source` 'amplemarket' | 'crm' | 'user_uploaded'
    - `is_wrong_number` boolean, required
    - `is_dnc_listed` boolean — Present only when the account has phone number DNC list enabled
  - `recent_activity` ResponseContactActivityObject[]
    - `event_at` string, date_time, required
    - `event_type` string, required
    - `automatic` boolean, nullable
    - `type` string, nullable
    - `description` string, nullable
    - `subject` string, nullable
    - `body` string, nullable
    - `sequence_id` string, nullable
    - `sequence_name` string, nullable
    - `sequence_type` string, nullable
    - `index` integer, nullable
    - `tags` string[], nullable
    - `notes` string, nullable
    - `call_disposition` string, nullable
    - `call_notes` string, nullable

## Other responses

- `400` — Bad request
- `409` — Conflict
- `422` — Unprocessable content

---

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