Create embedded signature request
documentedCreate a signature request intended to be signed in an embedded UI.
POST /signature_request/create_embeddedSign 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" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-u "{{DROPBOX_API_KEY}}:" \
-d '{ \
"client_id": "{{$client_id}}", \
"title": "{{$title}}", \
"subject": "{{$subject}}", \
"message": "{{$message}}", \
"signers": [ \
{"email_address": "{{$signer1_email}}", "name": "{{$signer1_name}}", "order": 0}, \
{"email_address": "{{$signer2_email}}", "name": "{{$signer2_name}}", "order": 1} \
], \
"cc_email_addresses": ["{{$cc1_email}}", "{{$cc2_email}}"], \
"file_urls": ["{{$file_url}}"], \
"signing_options": { \
"draw": {{$draw}}, \
"type": {{$type}}, \
"upload": {{$upload}}, \
"phone": {{$phone}}, \
"default_type": "{{$default_type}}" \
}, \
"test_mode": {{$test_mode}} \
}'