Sign in

Send signature request with template

documented

Create and send a signature request based on a template.

POST /signature_request/send_with_templateSign APIno 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/send_with_template" \\
  -X POST\\\n  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \\
  -H "Content-Type: application/json" \\
  -H "Accept: application/json" \\
  -d '{"template_ids":["{{$template_id}}"],"signers":[{"email_address":"{{$signer_email}}","name":"{{$signer_name}}","role":"{{$signer_role}}","order":{{$signer_order}}}],"subject":"{{$subject}}","title":"{{$title}}","message":"{{$message}}","ccs":[{"email_address":"{{$cc_email}}","role":"{{$cc_role}}"}],"allow_decline":{{$allow_decline}},"test_mode":{{$test_mode}},"custom_fields":[{"name":"{{$custom_field_name}}","value":"{{$custom_field_value}}"}],"client_id":"{{$client_id}}"}'