SignWell · Schema
BulkSendDocumentsResponse
Paginated list of documents in a bulk send
E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| api_application_id | string | |
| created_at | string | |
| user_id | string | |
| status | string | |
| documents | array | |
| current_page | integer | |
| next_page | integer | |
| previous_page | integer | |
| total_count | integer | |
| total_pages | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/BulkSendDocumentsResponse.json",
"title": "BulkSendDocumentsResponse",
"type": "object",
"description": "Paginated list of documents in a bulk send",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"api_application_id": {
"type": "string",
"format": "uuid",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time"
},
"user_id": {
"type": "string",
"format": "uuid",
"nullable": true
},
"status": {
"type": "string"
},
"documents": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DocumentResponse"
}
},
"current_page": {
"type": "integer"
},
"next_page": {
"type": "integer",
"nullable": true
},
"previous_page": {
"type": "integer",
"nullable": true
},
"total_count": {
"type": "integer"
},
"total_pages": {
"type": "integer"
}
},
"required": [
"id",
"documents",
"current_page",
"total_count",
"total_pages"
]
}