Sign in

Create Embedded Signature Request with Template

documented

Creates an embedded SignatureRequest based on a Template.

POST /v3/signature_request/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/create_embedded_with_template" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{ "template_ids": ["{{$template_id}}"], "client_id": "{{$client_id}}", "signers": [ { "role": "Client", "name": "{{$signer_name}}", "emailAddress": "{{$signer_email}}" } ], "subject": "{{$subject}}", "message": "{{$message}}", "title": "{{$title}}", "test_mode": {{$test_mode}}, "allow_decline": {{$allow_decline}}, "ccs": [ { "emailAddress": "{{$cc_email}}", "role": "{{$cc_role}}" } ], "metadata": { "{{$metadata_key}}": "{{$metadata_value}}" }, "custom_fields": [ { "name": "{{$cf_name}}", "value": "{{$cf_value}}", "type": "{{$cf_type}}", "editor": "{{$cf_editor}}", "required": {{$cf_required}} } ], "signing_options": { "draw": {{$signing_draw}}, "upload": {{$signing_upload}} } }'"
Create Embedded Signature Request with Template · Dropbox Sign · OpenIntegrations