SignWell · Schema

BulkSendValidateCsvResponse

Validated bulk send CSV response with defaults applied

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
bulk_send_csv string Base64-encoded CSV content
template_ids array
skip_row_errors boolean
api_application_id string
name string
subject string
message string
apply_signing_order boolean
View JSON Schema on GitHub

JSON Schema

BulkSendValidateCsvResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/BulkSendValidateCsvResponse.json",
  "title": "BulkSendValidateCsvResponse",
  "type": "object",
  "description": "Validated bulk send CSV response with defaults applied",
  "properties": {
    "bulk_send_csv": {
      "type": "string",
      "description": "Base64-encoded CSV content"
    },
    "template_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      }
    },
    "skip_row_errors": {
      "type": "boolean"
    },
    "api_application_id": {
      "type": "string",
      "format": "uuid",
      "nullable": true
    },
    "name": {
      "type": "string"
    },
    "subject": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "apply_signing_order": {
      "type": "boolean"
    }
  },
  "required": [
    "bulk_send_csv",
    "template_ids"
  ]
}