Bulk Send with Template
documentedCreates a BulkSendJob to send multiple SignatureRequests using provided Template(s).
POST /v3/signature_request/bulk_send_with_templateSignature Requestno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.hellosign.com/v3/signature_request/bulk_send_with_template" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"template_ids": ["{{$template_id}}"], "signer_list": [ { "custom_fields": [ { "name": "company", "value": "{{$company}}" } ], "signers": [ { "role": "Client", "name": "{{$signer1_name}}", "email_address": "{{$signer1_email}}" } ] } ], "ccs": [ { "role": "Accounting", "email_address": "{{$cc_email1}}" } ], "subject": "{{$subject}}", "message": "{{$message}}", "title": "{{$title}}", "test_mode": {{$test_mode}}, "signing_redirect_url": "{{$redirect_url}}", "metadata": { "order_id": "{{$order_id}}" } }'