Send Signature Request
documentedCreates and sends a new SignatureRequest with the submitted documents.
POST /v3/signature_request/sendSignature 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/send" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"test_mode": true, "title": "{{$title}}", "subject": "{{$subject}}", "message": "{{$message}}", "signers": [{"name": "{{$signer_name}}", "email_address": "{{$signer_email}}", "order": 1}], "file_urls": ["{{$file_url}}"]}'