PandaDoc · Schema

DocumentFieldsUpdateRequest

Request to update field values within a document.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
fields array List of field name-value pairs to update.
View JSON Schema on GitHub

JSON Schema

pandadoc-documentfieldsupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentFieldsUpdateRequest",
  "title": "DocumentFieldsUpdateRequest",
  "type": "object",
  "description": "Request to update field values within a document.",
  "properties": {
    "fields": {
      "type": "array",
      "description": "List of field name-value pairs to update.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Field name to update."
          },
          "value": {
            "description": "New value to assign to the field."
          }
        }
      }
    }
  }
}