Docupilot · Schema

CreateEnvelopeRecipient

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
email_address string
order integer
View JSON Schema on GitHub

JSON Schema

app-CreateEnvelopeRecipient.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateEnvelopeRecipient",
  "description": "",
  "type": "object",
  "properties": {
    "email_address": {
      "type": "string",
      "format": "email",
      "maxLength": 254
    },
    "order": {
      "type": "integer",
      "maximum": 2147483647,
      "minimum": 0
    }
  },
  "required": [
    "email_address",
    "order"
  ]
}