PandaDoc · Schema

DocumentRecipientUpdateRequest

Fields to update on an existing document recipient.

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.
signing_order integer Updated signing order position.
View JSON Schema on GitHub

JSON Schema

pandadoc-documentrecipientupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentRecipientUpdateRequest",
  "title": "DocumentRecipientUpdateRequest",
  "type": "object",
  "description": "Fields to update on an existing document recipient.",
  "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."
    },
    "signing_order": {
      "type": "integer",
      "description": "Updated signing order position."
    }
  }
}