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
POST/api/v1/documents/{id}/bulk-send#

Bulk send document

ParameterTypeDescription
idrequiredpathstring
recipientsrequiredarray of object
recipients[].emailrequiredstring
recipients[].namerequiredstring
subjectoptionalstringStored with each copy and shown in the dashboard. Invitation email subject stays the SigPen standard.
skip_emailoptionalbooleanCreate 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}#

Check bulk send status

ParameterTypeDescription
idrequiredpathstring
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"