Sign in

Send document for e-signature

documented

Initiates a signature request for a document; supports multipart/form-data and application/json.

POST /v1/document/sendDocumentsno implementation yet0 runs
No 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}} }'"
Send document for e-signature · BoldSign · OpenIntegrations