PandaDoc · Schema

ContactUpdateRequest

Fields to update on an existing contact record.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
first_name string Updated first name.
last_name string Updated last name.
email string Updated email address.
company string Updated company name.
job_title string Updated job title.
phone string Updated phone number.
View JSON Schema on GitHub

JSON Schema

pandadoc-contactupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactUpdateRequest",
  "title": "ContactUpdateRequest",
  "type": "object",
  "description": "Fields to update on an existing contact record.",
  "properties": {
    "first_name": {
      "type": "string",
      "description": "Updated first name."
    },
    "last_name": {
      "type": "string",
      "description": "Updated last name."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Updated email address."
    },
    "company": {
      "type": "string",
      "description": "Updated company name."
    },
    "job_title": {
      "type": "string",
      "description": "Updated job title."
    },
    "phone": {
      "type": "string",
      "description": "Updated phone number."
    }
  }
}