Create embedded signature request with template
documentedCreate an embedded signature request using a template.
POST /signature_request/create_embedded_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/create_embedded_with_template" \
-X POST \
-u "{{DROPBOX_API_KEY}}:" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"template_ids": ["{{$template_id}}"], "client_id": "{{$client_id}}", "signers": [{"role": "{{$signer_role}}", "name": "{{$signer_name}}", "email_address": "{{$signer_email}}"}], "subject": "{{$subject}}", "message": "{{$message}}", "title": "{{$title}}", "test_mode": {{$test_mode}}, "signing_options": {"draw": {{$signing_options_draw}}, "type": {{$signing_options_type}}, "upload": {{$signing_options_upload}}, "phone": {{$signing_options_phone}}, "default_type": "{{$signing_options_default_type}}" } }'