Resources
Bulk Send
Send one document to many recipients at once. Each recipient gets their own copy and signing session.
Professional: 25 · Business: 100 per batchskip_email for self-distribution
Bulk send document
| Parameter | Type | Description |
|---|---|---|
idrequiredpath | string | |
recipientsrequired | array of object | |
recipients[].emailrequired | string | |
recipients[].namerequired | string | |
subjectoptional | string | Stored with each copy and shown in the dashboard. Invitation email subject stays the SigPen standard. |
skip_emailoptional | boolean | Create the signing sessions without sending invitation emails, so you can distribute the signing URLs yourself. |
POST /api/v1/documents/{id}/bulk-send
curl -X POST \
https://www.sigpen.com/api/v1/documents/blk_123/bulk-send \
-H "Authorization: Bearer sp_test_your_key" \
-H "Content-Type: application/json" \
-d '{
"recipients": [
{
"email": "alice@acme.com",
"name": "Alice Chen"
}
],
"subject": "string",
"skip_email": false
}'GET /api/v1/bulk-sends/{id}
curl -X GET \ https://www.sigpen.com/api/v1/bulk-sends/blk_123 \ -H "Authorization: Bearer sp_test_your_key"