Send signature request
documentedCreate and send a new signature request.
POST /signature_request/sendSign 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/send" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"file_urls": ["{{$file_url}}"], "signers": [{"email_address": "{{$signer1_email}}", "name": "{{$signer1_name}}", "order": {{$signer1_order}}}, {"email_address": "{{$signer2_email}}", "name": "{{$signer2_name}}", "order": {{$signer2_order}}}], "cc_email_addresses": ["{{$cc1_email}}","{{$cc2_email}}"], "metadata": {"custom_id": "{{$custom_id}}", "custom_text": "{{$custom_text}}"}, "subject": "{{$subject}}", "title": "{{$title}}", "message": "{{$message}}", "test_mode": {{$test_mode}}, "signing_redirect_url": "{{$signing_redirect_url}}"}' }