Sign in

Bulk Create Embedded Signature Requests with Template

documented

Creates a BulkSendJob for embedded SignatureRequests using Templates.

POST /v3/signature_request/bulk_create_embedded_with_templateSignature Requestno implementation yet0 runs
No 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_create_embedded_with_template" \
  -X POST \
  -u '{{HELLOSIGN_API_KEY}}:' \
  -F 'client_id={{client_id}}' \
  -F 'template_ids[]={{template_id}}' \
  -F 'subject={{subject}}' \
  -F 'message={{message}}' \
  -F 'signer_list[0][signers][role]={{sig0_role}}' \
  -F 'signer_list[0][signers][name]={{sig0_name}}' \
  -F 'signer_list[0][signers][email_address]={{sig0_email}}' \
  -F 'signer_list[0][signers][pin]={{sig0_pin}}' \
  -F 'signer_list[0][custom_fields][0][name]={{sig0_customfield0_name}}' \
  -F 'signer_list[0][custom_fields][0][value]={{sig0_customfield0_value}}' \
  -F 'signer_list[1][signers][role]={{sig1_role}}' \
  -F 'signer_list[1][signers][name]={{sig1_name}}' \
  -F 'signer_list[1][signers][email_address]={{sig1_email}}' \
  -F 'signer_list[1][signers][pin]={{sig1_pin}}' \
  -F 'signer_list[1][custom_fields][0][name]={{sig1_customfield0_name}}' \
  -F 'signer_list[1][custom_fields][0][value]={{sig1_customfield0_value}}' \
  -F 'ccs[0][role]={{cc0_role}}' \
  -F 'ccs[0][email_address]={{cc0_email}}' \
  -F 'test_mode={{test_mode}}'
Bulk Create Embedded Signature Requests with Template · Dropbox Sign · OpenIntegrations