test: use legacy query routes in postman

This commit is contained in:
Meik
2026-07-01 16:38:55 +02:00
parent 3124f6c97b
commit 4526b0ebe4

View File

@@ -367,18 +367,32 @@
} }
], ],
"url": { "url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/getTicketList/{{sid}}/{{hours}}/{{queueOption}}/{{queues}}", "raw": "{{baseUrl}}/api/c4itf4sdwebapi/getTicketList?sid={{sid}}&hours={{hours}}&queueoption={{queueOption}}&queues={{queues}}",
"host": [ "host": [
"{{baseUrl}}" "{{baseUrl}}"
], ],
"path": [ "path": [
"api", "api",
"c4itf4sdwebapi", "c4itf4sdwebapi",
"getTicketList", "getTicketList"
"{{sid}}", ],
"{{hours}}", "query": [
"{{queueOption}}", {
"{{queues}}" "key": "sid",
"value": "{{sid}}"
},
{
"key": "hours",
"value": "{{hours}}"
},
{
"key": "queueoption",
"value": "{{queueOption}}"
},
{
"key": "queues",
"value": "{{queues}}"
}
] ]
} }
} }
@@ -452,16 +466,24 @@
} }
], ],
"url": { "url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/getDirectLinkCreateTicket/{{sid}}/{{assetName}}", "raw": "{{baseUrl}}/api/c4itf4sdwebapi/getDirectLinkCreateTicket?sid={{sid}}&assetname={{assetName}}",
"host": [ "host": [
"{{baseUrl}}" "{{baseUrl}}"
], ],
"path": [ "path": [
"api", "api",
"c4itf4sdwebapi", "c4itf4sdwebapi",
"getDirectLinkCreateTicket", "getDirectLinkCreateTicket"
"{{sid}}", ],
"{{assetName}}" "query": [
{
"key": "sid",
"value": "{{sid}}"
},
{
"key": "assetname",
"value": "{{assetName}}"
}
] ]
} }
} }
@@ -477,16 +499,24 @@
} }
], ],
"url": { "url": {
"raw": "{{baseUrl}}/api/c4itf4sdwebapi/getDirectLinkF4SD/{{eoid}}/{{type}}", "raw": "{{baseUrl}}/api/c4itf4sdwebapi/getDirectLinkF4SD?eoid={{eoid}}&type={{type}}",
"host": [ "host": [
"{{baseUrl}}" "{{baseUrl}}"
], ],
"path": [ "path": [
"api", "api",
"c4itf4sdwebapi", "c4itf4sdwebapi",
"getDirectLinkF4SD", "getDirectLinkF4SD"
"{{eoid}}", ],
"{{type}}" "query": [
{
"key": "eoid",
"value": "{{eoid}}"
},
{
"key": "type",
"value": "{{type}}"
}
] ]
} }
} }