Send document for e-signature
documentedInitiates a signature request for a document; supports multipart/form-data and application/json.
POST /v1/document/sendDocumentsno 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.boldsign.com/v1/document/send" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-API-KEY: {{BOLDSIGN_API_KEY}}" \
-d '{"title": "{{$title}}", "message": "{{$message}}", "signers": [{"name": "{{$signer_name}}", "emailAddress": "{{$signer_email}}", "signerType": "Signer", "privateMessage": "{{$private_message}}"}], "fileUrls": ["{{$file_url_1}}", "{{$file_url_2}}"], "disableExpiryAlert": false, "reminderSettings": {"reminderDays": {{$reminderDays}}, "reminderCount": {{$reminderCount}}}, "onBehalfOf": "{{$on_behalf_of}}", "documentDownloadOption": "Combined", "expiryDays": {{$expiryDays}} }'"