Policy Document Mgmt & E‑Signature — Host-to-Host Integration

Insurance • Templates, rendering, envelopes, signatures, delivery, and evidence (no SLA section)

Purpose of Host-to-Host

Core Data Objects

Example API Endpoints

POST /templates
Create/update template; upload DOCX/HTML & assets
POST /documents/render
Render PDF with merge fields & watermark
POST /envelopes
Create envelope with signers, routing, and expiry
POST /envelopes/{id}/send
Dispatch links via email/SMS/WA; return tracking IDs
POST /esign/verify
Verify OTP/identity; store KYC snapshot
GET /envelopes/{id}/status
Poll status; or subscribe to webhooks
GET /documents/{id}/download
Signed URL for PDF (short TTL)
POST /callbacks/esign
Receive status: sent/opened/signed/completed/declined
POST /documents/revoke
Revoke/expire links; issue new version

Sample Render Request

POST /documents/render
{
  "templateId":"POLICY-EPOLICY-v4",
  "policyNo":"POL-2025-001122",
  "locale":"en",
  "data": {"insuredName":"Jane Doe","sumInsured":250000000,"effective":"2025-08-14"},
  "options":{"watermark":"COPY","qrVerify":true,"hash":true}
}

Sample Envelope

POST /envelopes
{
  "documentId":"DOC-EPOLICY-77821",
  "signers":[
     {"role":"Proposer","name":"Jane Doe","email":"jane@example.com","method":"OTP"},
     {"role":"Agent","name":"Rama","email":"rama@example.com","method":"Drawn"}
  ],
  "routing":"sequential",
  "expiresInDays":7
}

Reference Flows

Issue & Sign
  • PAS calls /documents/render (e‑policy + invoice)
  • Create /envelopes/envelopes/send
  • Signers complete; /callbacks/esign marks policy as active
Download & Verify
  • User downloads via signed URL
  • QR/URL points to verify endpoint with hash check
  • Access logged for audit
Version & Reissue
  • Template update → publish new version
  • Re‑render documents; revoke older links
  • Notify customers & archive prior versions
Embedded in Partner Apps
  • SSO to signer page; prefilled consent
  • Status callbacks update partner CRM
  • Documents mirrored to partner DMS if allowed

Security & Controls

Monitoring & Audit

What You Get