Docupilot · Schema
HelloSignDelivery
Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| failure_email_recipients | string | |
| account | integer | |
| signers | array | |
| name | string | |
| type | string | |
| success_callback_url | string | |
| success_callback_payload | object | |
| success_callback_headers | object | |
| last_used_on | string | |
| title | string | |
| subject | string | |
| message | string | |
| cc | array | |
| use_text_tags | boolean | |
| hide_text_tags | boolean | |
| sequenced_signing | boolean | |
| enable_optional_signers | boolean |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "HelloSignDelivery",
"description": "",
"type": "object",
"properties": {
"id": {
"type": "integer",
"readOnly": true
},
"failure_email_recipients": {
"type": "string",
"nullable": true,
"maxLength": 255
},
"account": {
"type": "integer"
},
"signers": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"email_address": {
"type": "string",
"format": "email"
}
},
"required": [
"name",
"email_address"
]
}
},
"name": {
"type": "string",
"maxLength": 255
},
"type": {
"enum": [
"webhook",
"azure_blob_storage",
"box_drive",
"signature",
"docu_sign",
"sign_now",
"zoho_crm",
"dropbox",
"google_drive",
"podio",
"one_drive",
"sharepoint",
"eversign",
"hellosign",
"aws_s3",
"signable",
"yousign",
"email",
"sftp"
],
"type": "string"
},
"success_callback_url": {
"type": "string",
"nullable": true,
"maxLength": 255
},
"success_callback_payload": {
"type": "object",
"additionalProperties": {},
"nullable": true
},
"success_callback_headers": {
"type": "object",
"additionalProperties": {},
"nullable": true
},
"last_used_on": {
"type": "string",
"format": "date-time",
"nullable": true
},
"title": {
"type": "string",
"nullable": true
},
"subject": {
"type": "string",
"nullable": true
},
"message": {
"type": "string",
"nullable": true
},
"cc": {
"type": "array",
"items": {
"type": "string",
"maxLength": 1000
}
},
"use_text_tags": {
"type": "boolean"
},
"hide_text_tags": {
"type": "boolean"
},
"sequenced_signing": {
"type": "boolean"
},
"enable_optional_signers": {
"type": "boolean"
}
},
"required": [
"account",
"id",
"name",
"signers"
]
}