Guide
How to Sign Multiple Documents at Once
Automate batch document signing by calling the API for each document.
Steps
- 1
Prepare your documents programmatically
- 2
Loop through and call POST /api/send for each
- 3
Each recipient gets their own signing link
- 4
Track status via the document_id returned
- 5
All signed documents delivered individually
Try it with curl
curl
curl -X POST https://signb.ee/api/send \
-H "Content-Type: application/json" \
-d '{
"content": "# Your Document\n\nContent here...",
"senderName": "Your Name",
"senderEmail": "you@email.com",
"recipientName": "Recipient",
"recipientEmail": "recipient@email.com"
}'Legal validity
Electronic signatures are legally binding under the ESIGN Act (US), eIDAS Regulation (EU), and Electronic Communications Act (UK). Every Signbee document includes a SHA-256 tamper-proof certificate.
Related resources
Try Signbee — free, no credit card.