fix: route web api parameters through path

This commit is contained in:
Meik
2026-07-01 16:15:53 +02:00
parent 49d1259a84
commit 7c32c816ec
5 changed files with 43 additions and 73 deletions

View File

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