Serial Approval Chain
Route a request through a sequence of approvers where each must approve before the next receives it. The simplest and most common approval pattern.
On this page
Visual Flow
Rendering diagram…
When to Use This Pattern
Use a serial approval chain when:
- Approvals must happen in a specific order (e.g., manager → director → VP)
- Each approver's decision depends on the previous approver's sign-off
- You need a clear audit trail showing the exact sequence of approvals
- The business process has a defined hierarchy
This is the most common approval pattern. If you're unsure which pattern to use, start here.
How It Works
The request flows through approvers one at a time, top to bottom. If any approver rejects, the chain stops and the requestor is notified.
| Step | Actor | Action | On Approve | On Reject |
|---|---|---|---|---|
| 1 | Requestor | Submits request | → Step 2 | — |
| 2 | Manager | Reviews & decides | → Step 3 | → Notify requestor |
| 3 | Director | Reviews & decides | → Step 4 | → Notify requestor + manager |
| 4 | Finance | Final approval | → Complete | → Notify requestor + all approvers |
Implementation Guide
Step 1: Define the Approval Hierarchy
Map out who needs to approve and in what order. Common approaches:
- Static list — hardcode the approvers (simplest)
- Lookup table — store approver chains in a SharePoint list or database table (flexible)
- Org chart — dynamically resolve the chain from Active Directory or HR system (most maintainable)
Step 2: Build the Request Form
Create a form that captures all the information approvers need to make a decision. Include:
- Request details (what, why, how much)
- Supporting documents as attachments
- Urgency/priority field
- Requestor's manager (auto-populated if possible)
Step 3: Configure Each Approval Task
For each approver in the chain:
- Assign task to the approver
- Set a due date (e.g., 3 business days)
- Include context — show all previous approvers' decisions and comments
- Offer actions: Approve, Reject, Request More Info
- Send reminder if no response within 2 days
Step 4: Handle the Outcomes
- All approved → Execute the action (create PO, provision access, etc.) and notify the requestor
- Any rejection → Stop the chain, notify the requestor with the rejection reason
- Request more info → Pause the chain, send the request back to the requestor, then resume
Step 5: Add an Audit Trail
Log every decision with:
- Who approved/rejected
- When
- Comments provided
- IP address or device (for compliance scenarios)
Products That Support This Pattern
| Product | How to Implement |
|---|---|
| Workflow Cloud | Use the Assign a task action in a sequence. Set waitForCompletion = true on each. |
| K2 | Use Task steps in a sequential workflow. Configure the Task form with Approve/Reject outcomes. |
| Automation On-Prem | Use Request approval actions chained in sequence with conditional branching on outcomes. |
Tips & Best Practices
Always include a timeout mechanism. A single unresponsive approver can stall the entire chain indefinitely. See the Escalation with SLA Timeout pattern.
- Minimize the chain length. Each additional approver adds latency. If you have 5+ approvers, consider Parallel Approval with Threshold instead.
- Pre-validate before submitting. Use form rules to catch errors early so approvers don't waste time rejecting incomplete requests.
- Show running context. Each approver should see what previous approvers decided and any comments they left.
- Use delegation. Allow approvers to delegate to a backup when they're out of office. This prevents stalls without bypassing the approval requirement.
Common Variations
- Skip-level approval — If the amount is below a threshold, skip the director and go straight to finance
- Conditional chain — Different approver chains based on request type, department, or amount
- Loop-back — If the requestor provides more info, restart from the approver who asked for it (not from the beginning)
Related patterns
Budget-Tiered Approval
Route purchase requests, expense reports, and financial approvals through different approval chains based on the dollar amount. Low-value requests skip senior approvers; high-value requests get more scrutiny.
Parallel Approval with Threshold
Send approval requests to multiple people simultaneously and proceed when a minimum number approve. Faster than serial chains for peer-level decisions.
Escalation with SLA Timeout
Automatically escalate a task when the assigned person hasn't responded within a defined SLA. Prevents process stalls and enforces accountability.