SignWell · Example Payload

Validatebulksendcsv

Validates a Bulk Send CSV file before creating the Bulk Send. It will check the structure of the CSV and the data it contains, and return any errors found.

Bulk Send

Validatebulksendcsv is an example object payload from SignWell, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersrequestBody

Example Payload

Raw ↑
{
  "operationId": "validateBulkSendCsv",
  "method": "POST",
  "path": "/api/v1/bulk_sends/validate_csv",
  "summary": "Validate Bulk Send CSV",
  "description": "Validates a Bulk Send CSV file before creating the Bulk Send. It will check the structure of the CSV and the data it contains, and return any errors found.",
  "tags": [
    "Bulk Send"
  ],
  "parameters": [],
  "requestBody": {
    "content": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BulkSendCsvRequest"
    }
  }
}