Docupilot · Schema

EnvelopeHistory

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
envelope_id string
name string
status string
cc array
created_at string
signers array
history array
sender_email string
View JSON Schema on GitHub

JSON Schema

app-EnvelopeHistory.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EnvelopeHistory",
  "description": "",
  "type": "object",
  "properties": {
    "envelope_id": {
      "type": "string",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "status": {
      "enum": [
        "created",
        "pending",
        "voided",
        "declined",
        "completed"
      ],
      "type": "string"
    },
    "cc": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 1000
      }
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "signers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "readOnly": true
    },
    "history": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HistoryRecord"
      },
      "readOnly": true
    },
    "sender_email": {
      "type": "string",
      "readOnly": true
    }
  },
  "required": [
    "created_at",
    "envelope_id",
    "history",
    "name",
    "sender_email",
    "signers"
  ]
}