PandaDoc · Schema

ContactCreateRequest

Request body for creating a new contact.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
first_name string First name of the contact.
last_name string Last name of the contact.
email string Email address of the contact. Optional.
company string Company name of the contact.
job_title string Job title of the contact.
phone string Phone number of the contact.
View JSON Schema on GitHub

JSON Schema

pandadoc-contactcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactCreateRequest",
  "title": "ContactCreateRequest",
  "type": "object",
  "description": "Request body for creating a new contact.",
  "required": [
    "first_name",
    "last_name"
  ],
  "properties": {
    "first_name": {
      "type": "string",
      "description": "First name of the contact."
    },
    "last_name": {
      "type": "string",
      "description": "Last name of the contact."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the contact. Optional."
    },
    "company": {
      "type": "string",
      "description": "Company name of the contact."
    },
    "job_title": {
      "type": "string",
      "description": "Job title of the contact."
    },
    "phone": {
      "type": "string",
      "description": "Phone number of the contact."
    }
  }
}