Fix exclusion filter examples in Postman collection

This commit is contained in:
Drechsler, Meik
2026-07-23 12:15:09 +02:00
parent af909849f7
commit 0af8981323

View File

@@ -129,13 +129,21 @@
"key": "queueOption",
"value": "0"
},
{
"key": "queues",
"value": ""
},
{
"key": "roleGuid",
"value": "00000000-0000-0000-0000-000000000000"
{
"key": "queues",
"value": ""
},
{
"key": "queueName",
"value": "HR"
},
{
"key": "workspaceName",
"value": "HR Service Management"
},
{
"key": "roleGuid",
"value": "00000000-0000-0000-0000-000000000000"
},
{
"key": "pickupName",
@@ -1043,7 +1051,7 @@
}
},
{
"name": "get filtered ticket list",
"name": "get ticket list excluding queue",
"request": {
"method": "POST",
"header": [
@@ -1052,7 +1060,26 @@
],
"body": {
"mode": "raw",
"raw": "{\r\n \"Sid\": \"{{sid}}\",\r\n \"Hours\": {{hours}},\r\n \"Filters\": {\r\n \"Filters\": [\r\n {\r\n \"Provider\": \"Matrix42\",\r\n \"Field\": \"Queue\",\r\n \"Enabled\": true,\r\n \"Match\": \"include\",\r\n \"EmptyHandling\": \"exclude\",\r\n \"Values\": [{ \"Name\": \"{{queueName}}\" }]\r\n }\r\n ]\r\n }\r\n}"
"raw": "{\r\n \"Sid\": \"{{sid}}\",\r\n \"Hours\": {{hours}},\r\n \"Filters\": {\r\n \"Filters\": [\r\n {\r\n \"Provider\": \"Matrix42\",\r\n \"Field\": \"Queue\",\r\n \"Enabled\": true,\r\n \"Match\": \"exclude\",\r\n \"EmptyHandling\": \"include\",\r\n \"Values\": [{ \"Name\": \"{{queueName}}\" }]\r\n }\r\n ]\r\n }\r\n}"
},
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/v2/getTicketList",
"host": ["{{baseUrl}}"],
"path": ["api", "c4itf4sdwebapi", "v2", "getTicketList"]
}
}
},
{
"name": "get ticket list excluding workspace (Matrix42 26.1+)",
"request": {
"method": "POST",
"header": [
{ "key": "Accept", "value": "application/json" },
{ "key": "Content-Type", "value": "application/json" }
],
"body": {
"mode": "raw",
"raw": "{\r\n \"Sid\": \"{{sid}}\",\r\n \"Hours\": {{hours}},\r\n \"Filters\": {\r\n \"Filters\": [\r\n {\r\n \"Provider\": \"Matrix42\",\r\n \"Field\": \"Workspace\",\r\n \"Enabled\": true,\r\n \"Match\": \"exclude\",\r\n \"EmptyHandling\": \"include\",\r\n \"Values\": [{ \"Name\": \"{{workspaceName}}\" }]\r\n }\r\n ]\r\n }\r\n}"
},
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/v2/getTicketList",