Skip to content

Commit c920953

Browse files
authored
Create README.md
1 parent 25c00d6 commit c920953

File tree

1 file changed

+23
-0
lines changed
  • Server-Side Components/Inbound Actions/Duplicate Incident Detection and Creation

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Duplicate Incident Detection and Creation**
2+
3+
**Description**
4+
This inbound email action detects duplicate incidents from incoming emails and either updates existing incidents or creates a new one.
5+
6+
- Duplicate Found: Updates the existing incident's work notes with the new email content and aborts new incident creation.
7+
- No Duplicate Found: Creates a new incident with the email subject as short description and the email body as description.
8+
9+
**Use Case**
10+
When multiple users report the same issue via email, this automation prevents duplicate incidents, keeping the incident queue cleaner and improving triage efficiency.
11+
12+
**Inbound Action Configuration**
13+
- Target Table: incident
14+
- Action Type: Record Action
15+
- Type: New
16+
17+
**How It Works**
18+
1. The inbound email action scans the email subject for matches against active incidents whose short description contains the subject excluding Closed or Cancelled incidents.
19+
2. If a matching incident is found:
20+
- Updates the incident's work notes with the email content.
21+
- Aborts creation of a new incident.
22+
3. If no match is found:
23+
- Creates a new incident using the email subject as the short description and the email body as the description.

0 commit comments

Comments
 (0)