Create Embedded Signature Request
documentedCreates a new SignatureRequest to be signed in an embedded iframe.
POST /v3/signature_request/create_embeddedSignature Requestno 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 \
-u "{{HELLOSIGN_API_KEY}}:" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"client_id":"{{$client_id}}","title":"{{$title}}","subject":"{{$subject}}","message":"{{$message}}","test_mode":{{$test_mode}},"signers":[{"name":"{{$signer_name}}","email_address":"{{$signer_email}}","order":{{$signer_order}}}],"file_urls":["{{$file_url}}"]}'