feat: support parallel legacy and sandbox extensions

This commit is contained in:
Meik
2026-07-13 15:09:21 +02:00
parent b8ad580ae5
commit 58dcc9f943
89 changed files with 10102 additions and 123 deletions

View File

@@ -928,7 +928,100 @@
}
}
}
]
}
]
}
]
},
{
"name": "05 User ID APIs",
"item": [
{
"name": "getTicketListForUser",
"request": {
"method": "GET",
"header": [{ "key": "Accept", "value": "application/json" }],
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/getTicketListForUser?userId={{userId}}&hours={{hours}}&queueoption={{queueOption}}&queues={{queues}}",
"host": ["{{baseUrl}}"],
"path": ["api", "c4itf4sdwebapi", "getTicketListForUser"],
"query": [
{ "key": "userId", "value": "{{userId}}" },
{ "key": "hours", "value": "{{hours}}" },
{ "key": "queueoption", "value": "{{queueOption}}" },
{ "key": "queues", "value": "{{queues}}" }
]
}
}
},
{
"name": "getTicketOverviewCountsForUser",
"request": {
"method": "GET",
"header": [{ "key": "Accept", "value": "application/json" }],
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/getTicketOverviewCountsForUser?userId={{userId}}&scope={{scope}}&keys={{overviewKeys}}&queueoption={{queueOption}}&queues={{queues}}",
"host": ["{{baseUrl}}"],
"path": ["api", "c4itf4sdwebapi", "getTicketOverviewCountsForUser"],
"query": [
{ "key": "userId", "value": "{{userId}}" },
{ "key": "scope", "value": "{{scope}}" },
{ "key": "keys", "value": "{{overviewKeys}}" },
{ "key": "queueoption", "value": "{{queueOption}}" },
{ "key": "queues", "value": "{{queues}}" }
]
}
}
},
{
"name": "getTicketOverviewCountsByRolesForUser",
"request": {
"method": "POST",
"header": [
{ "key": "Accept", "value": "application/json" },
{ "key": "Content-Type", "value": "application/json" }
],
"body": {
"mode": "raw",
"raw": "{\r\n \"userId\": \"{{userId}}\",\r\n \"RoleGuids\": [\"{{roleGuid}}\"],\r\n \"Keys\": [\"TicketsNew\", \"TicketsActive\"],\r\n \"QueueOption\": {{queueOption}},\r\n \"Queues\": \"{{queues}}\"\r\n}"
},
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/getTicketOverviewCountsByRolesForUser",
"host": ["{{baseUrl}}"],
"path": ["api", "c4itf4sdwebapi", "getTicketOverviewCountsByRolesForUser"]
}
}
},
{
"name": "getTicketOverviewRelationsForUser",
"request": {
"method": "GET",
"header": [{ "key": "Accept", "value": "application/json" }],
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/getTicketOverviewRelationsForUser?userId={{userId}}&scope={{scope}}&key={{overviewKey}}&count={{overviewRelationExpectedCount}}&queueoption={{queueOption}}&queues={{queues}}",
"host": ["{{baseUrl}}"],
"path": ["api", "c4itf4sdwebapi", "getTicketOverviewRelationsForUser"],
"query": [
{ "key": "userId", "value": "{{userId}}" },
{ "key": "scope", "value": "{{scope}}" },
{ "key": "key", "value": "{{overviewKey}}" },
{ "key": "count", "value": "{{overviewRelationExpectedCount}}" },
{ "key": "queueoption", "value": "{{queueOption}}" },
{ "key": "queues", "value": "{{queues}}" }
]
}
}
},
{
"name": "getRoleMemberships path by user id",
"request": {
"method": "GET",
"header": [{ "key": "Accept", "value": "application/json" }],
"url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/getRoleMemberships/{{userId}}",
"host": ["{{baseUrl}}"],
"path": ["api", "c4itf4sdwebapi", "getRoleMemberships", "{{userId}}"]
}
}
}
]
}
]
}