PandaDoc · Schema

Contact

A contact record in the PandaDoc contacts directory.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
id string Unique identifier of the contact.
email string Email address of the contact.
first_name string First name of the contact.
last_name string Last name of the contact.
company string Company name of the contact.
job_title string Job title of the contact.
phone string Phone number of the contact.
state string State or region of the contact.
street_address string Street address of the contact.
city string City of the contact.
postal_code string Postal or ZIP code of the contact.
country string ISO country code of the contact.
View JSON Schema on GitHub

JSON Schema

pandadoc-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Contact",
  "title": "Contact",
  "type": "object",
  "description": "A contact record in the PandaDoc contacts directory.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the contact."
    },
    "email": {
      "type": "string",
      "format": "email",
      "nullable": true,
      "description": "Email address of the contact."
    },
    "first_name": {
      "type": "string",
      "description": "First name of the contact."
    },
    "last_name": {
      "type": "string",
      "description": "Last name of the contact."
    },
    "company": {
      "type": "string",
      "nullable": true,
      "description": "Company name of the contact."
    },
    "job_title": {
      "type": "string",
      "nullable": true,
      "description": "Job title of the contact."
    },
    "phone": {
      "type": "string",
      "nullable": true,
      "description": "Phone number of the contact."
    },
    "state": {
      "type": "string",
      "nullable": true,
      "description": "State or region of the contact."
    },
    "street_address": {
      "type": "string",
      "nullable": true,
      "description": "Street address of the contact."
    },
    "city": {
      "type": "string",
      "nullable": true,
      "description": "City of the contact."
    },
    "postal_code": {
      "type": "string",
      "nullable": true,
      "description": "Postal or ZIP code of the contact."
    },
    "country": {
      "type": "string",
      "nullable": true,
      "description": "ISO country code of the contact."
    }
  }
}