-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestCases.txt
More file actions
24 lines (22 loc) · 773 Bytes
/
testCases.txt
File metadata and controls
24 lines (22 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Test case 1 : typical delivery-related support ticket
curl -X POST https://brightyorcerf.app.n8n.cloud/webhook/ticket-intake \
-H "Content-Type: application/json" \
-d '{
"subject": "Order not delivered",
"message": "My package was supposed to arrive yesterday but it never showed up."
}’
Test case 2: high urgency / billing issue (shows intelligence)
curl -X POST https://brightyorcerf.app.n8n.cloud/webhook/ticket-intake \
-H "Content-Type: application/json" \
-d '{
"subject": "Charged twice for subscription",
"message": "I was billed two times this month. This needs to be fixed ASAP."
}'
Test case 3 — failure path
curl -X POST https://brightyorcerf.app.n8n.cloud/webhook/ticket-intake \
-H "Content-Type: application/json" \
-d '{"subject": ""}'