Bulk send signature requests with template
documentedCreate and send up to 250 signature requests in bulk from templates.
POST /signature_request/bulk_send_with_templateSign APIno 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 "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"template_ids": ["{{$template_id}}"], "signer_list": [{"role": "Client", "name": "{{$signer_name}}", "email_address": "{{$signer_email}}"}], "subject": "{{$subject}}", "message": "{{$message}}", "test_mode": {{$test_mode}} }'"