Skip to Content
Product GuidesOnootsSign™

OnootsSign™

OnootsSign™ is Onoots’s e-signature integration, allowing contracts to be sent, signed, and tracked within the deal workflow.

E-Signature Flow

  1. Broker or agent initiates signing from /dashboard/brokerage/onoots-sign
  2. Document is sent to parties via DocuSign/HelloSign webhook
  3. Each signing event fires a webhook to /api/webhooks/onoots-sign
  4. Audit trail is recorded per deal

Send a Document for Signing

POST /api/brokerage/onoots-sign/send Authorization: Bearer <jwt> Content-Type: application/json { "deal_id": "uuid", "document_key": "deals/abc/contract.pdf", "signers": [ { "name": "Jane Smith", "email": "jane@example.com", "role": "buyer" }, { "name": "John Doe", "email": "john@example.com", "role": "seller" } ] }

Void a Document

POST /api/brokerage/onoots-sign/void Authorization: Bearer <jwt> Content-Type: application/json { "envelope_id": "envelope-uuid", "reason": "Parties requested cancellation" }

Webhook Events

EventDescription
envelope.sentDocument sent to signers
envelope.deliveredAll signers have opened the document
envelope.completedAll parties signed
envelope.voidedDocument voided
recipient.signedIndividual signer completed

The broker can view the full audit trail of all signing events at /dashboard/brokerage/onoots-sign.

Last updated on