Skip to main contentAutomation Overview
Automate repetitive tasks to save time and reduce manual errors.
Types of Automation
Auto-Routing
Automatically send claims to correct department:
- If category = Quality → Route to Quality
- If safety concern → Route to Safety + Manager
- If vendor issue → Route to Procurement
Auto-Assignment
Automatically assign to specific person:
- If Quality claim → Assign to John (quality lead)
- If maintenance → Round-robin among mechanics
- If critical → Auto-assign to manager
Auto-Notification
Automatically notify relevant people:
- If critical → Email entire department
- If safety → @mention Safety Officer
- If escalated → Notify director
Auto-Status-Update
Automatically update status:
- If resolved and approved → Auto-close after 24 hours
- If overdue → Flag automatically
- If at-risk → Add to priority board
Creating Workflows
- Admin Console → Workflows
- Click “Add Workflow”
- Define trigger:
- When new claim created
- When status changes
- When time passes
- When comment added
- Define conditions:
- If category = X
- If priority = Y
- If assigned to Z
- Define actions:
- Route to department
- Assign to person
- Send notification
- Update status
- Test workflow
- Enable for all users
Workflow Examples
Example 1: Quality Claims Fast Track
Trigger: New claim created
Condition: Category = Quality AND Priority >= High
Actions:
- Route to Quality department
- Assign to Sarah (quality lead)
- Add to “Red Flag” report
- Notify quality manager
Result: High-priority quality issues handled immediately
Example 2: Preventive Maintenance
Trigger: Resolved claim
Condition: Category = Maintenance AND same equipment as past 2 claims
Actions:
- Flag as “recurring issue”
- Create improvement task
- Notify maintenance supervisor
- Link to knowledge base article
Result: Recurring problems detected and addressed
Example 3: Safety Escalation
Trigger: New claim OR comment added
Condition: Keyword = “injury” OR Category = Safety
Actions:
- Auto-escalate to Safety Manager
- Email Safety Officer
- Copy CEO
- Create audit trail
- Lock claim from editing (immutable history)
Result: Safety incidents get executive attention
Best Practices
- Start simple: One rule at a time
- Test first: Run on sample claims
- Monitor results: Check if working as intended
- Adjust frequently: Fine-tune based on usage
- Document: Keep list of active workflows
- Avoid conflicts: Different rules shouldn’t contradict
- Review regularly: Disable unused workflows
Troubleshooting
Workflow not triggering?
- Check conditions are correct
- Verify trigger happening
- Test with manual claim
Too many notifications?
- Adjust notification frequency
- Add conditions to reduce triggers
- Consolidate into digests
Wrong routing?
- Check condition logic
- Verify department assignments
- Review rule priority order
Next Steps