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

# Create contact

`POST /public/v1/contacts`

This method adds a contact into a contacts list.

## Request body

- ContactCreateRequest
  - `email` string, nullable — An email address of the contact
  - `first_name` string, nullable — Contact's first name
  - `last_name` string, nullable — Contact's last name
  - `company` string, nullable — Contact's company name
  - `job_title` string, nullable — Contact's job title
  - `phone` string, nullable — A phone number
  - `country` string, nullable — A country name
  - `state` string, nullable — A state name
  - `street_address` string, nullable — A street address
  - `city` string, nullable — A city name
  - `postal_code` string, nullable — A postal code

## Response `201`

OK

- ContactDetailsResponse
  - `id` string — A unique identifier of the contact
  - `email` string, nullable — An email address of the contact
  - `first_name` string, nullable — Contact's first name
  - `last_name` string, nullable — Contact's last name
  - `company` string, nullable — Contact's company name
  - `job_title` string, nullable — Contact's job title
  - `phone` string, nullable — A phone number
  - `country` string, nullable — A country name
  - `state` string, nullable — A state name
  - `street_address` string, nullable — A street address
  - `city` string, nullable — A city name
  - `postal_code` string, nullable — A postal code

## Other responses

- `400` — Bad Request
- `401` — Authentication error
- `429` — Too Many Requests

---

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