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