v1

latestOpenAPI 3.0.3MIT2026-07-24122271451.2 KB
Contacts

Create contact

This method adds a contact into a contacts list.

post/public/v1/contacts

Request body

emailstring nullable

An email address of the contact

first_namestring nullable

Contact's first name

last_namestring nullable

Contact's last name

companystring nullable

Contact's company name

job_titlestring nullable

Contact's job title

phonestring nullable

A phone number

countrystring nullable

A country name

statestring nullable

A state name

street_addressstring nullable

A street address

citystring nullable

A city name

postal_codestring nullable

A postal code

Example request

{
  "email": "user01@pandadoc.com",
  "first_name": "John",
  "last_name": "Doe",
  "company": "John Doe Inc.",
  "job_title": "CTO",
  "phone": "+14842634627",
  "country": "USA",
  "state": "Texas",
  "street_address": "1313 Mockingbird Lane",
  "city": "Austin",
  "postal_code": "75001"
}

Response

OK

idstring

A unique identifier of the contact

emailstring nullable

An email address of the contact

first_namestring nullable

Contact's first name

last_namestring nullable

Contact's last name

companystring nullable

Contact's company name

job_titlestring nullable

Contact's job title

phonestring nullable

A phone number

countrystring nullable

A country name

statestring nullable

A state name

street_addressstring nullable

A street address

citystring nullable

A city name

postal_codestring nullable

A postal code

Example response

{
  "id": "BCUWJhZm3k7grUNFAz6cD2",
  "email": "user01@pandadoc.com",
  "first_name": "John",
  "last_name": "Doe",
  "company": "John Doe Inc.",
  "job_title": "CTO",
  "phone": "+14842634627",
  "country": "USA",
  "state": "Texas",
  "street_address": "1313 Mockingbird Lane",
  "city": "Austin",
  "postal_code": "75001"
}