Patterns
intermediatedocument

E-Signature Routing

Route documents through a multi-party signing ceremony with defined signing order, reminders, and completion tracking. Works with Nintex Sign, DocuSign, and Adobe Sign.

Views17
BPMN 2.0
On this page

Visual Flow

Rendering diagram…

When to Use This Pattern

Use e-signature routing when:

  • Documents require legally binding digital signatures from one or more parties
  • Signers may be external (customers, vendors, partners) without system access
  • You need a tamper-evident audit trail proving who signed what and when
  • The signing ceremony has a defined order (employee signs first, manager countersigns)

How It Works

StepActorAction
1WorkflowPrepares document with signature fields
2WorkflowSends signing request to first signer
3Signer 1Opens email link, reviews, signs
4WorkflowDetects completion, sends to next signer
5Signer 2Opens email link, reviews, countersigns
6WorkflowAll signatures complete → distribute final copy
7WorkflowArchive signed document with certificate of completion

Implementation Guide

Step 1: Prepare the Document

Before routing for signatures:

  1. Generate the final document using Document Generation Pipeline
  2. Convert to PDF (signatures should be on a fixed-layout document)
  3. Place signature fields at the correct locations:
    • Signature line (drawn signature or typed)
    • Date field (auto-populated when signed)
    • Initials fields (for multi-page documents)
    • Custom fields (title, company name)
  4. Remove the DRAFT watermark
  5. Lock the document — no edits after this point
Step 2: Define the Signing Order
Order TypeDescriptionExample
SequentialSigner 1 must finish before Signer 2 receives itEmployee → Manager → HR
ParallelAll signers receive it simultaneouslyBoard members all sign independently
HybridSome sequential, some parallel(Legal + Finance in parallel) → then CEO
Step 3: Configure Each Signer

For each person in the signing ceremony:

SettingConfiguration
Signer name & emailResolved from request data or directory lookup
Signing role"Employee", "Manager", "Customer"
Fields to completeWhich signature/initial/date fields belong to this signer
AuthenticationEmail link, SMS code, ID verification (for high-value)
ExpirationHow long they have to sign (7 days typical)
RemindersAuto-remind every 2 days if not signed
Step 4: Handle Outcomes
OutcomeWorkflow Action
All signedDownload completed document, archive, notify all parties
DeclinedNotify the requestor, log the reason, cancel remaining signers
ExpiredSend a final reminder, then cancel. Notify requestor to re-initiate.
VoidThe sender can void the envelope before completion. Cancel all.
Step 5: Archive and Distribute

After all signatures are collected:

  1. Download the signed PDF with embedded digital signatures
  2. Download the certificate of completion (audit trail from the e-sign provider)
  3. Store both in the document repository with metadata
  4. Send final copies to all signers
  5. Update source records (CRM, contract system) with execution date and signed doc link
  6. Trigger downstream workflows (onboarding, provisioning, payment)

Tips & Best Practices

Tip

Pre-fill as many fields as possible. If the signer's name, title, date, and company are already known, pre-populate them. Signers should only need to click "Sign" — the less typing required, the faster they complete.

  • Use templates in your e-sign platform. Create reusable envelope templates with pre-placed signature fields for common document types (NDA, offer letter, SOW). This avoids placing fields manually each time.
  • Handle mobile signers. Most signers will open the link on their phone. Ensure the signing experience works well on mobile.
  • Don't send too many reminders. One reminder at 50% of the expiration window and one at 80% is enough. Excessive reminders are counterproductive.
  • Plan for declined signatures. When a signer declines, capture the reason. This information is valuable for understanding why deals fall through.

Related patterns