如何添加其他参数请求url邮递员

时间:2020-03-14 13:13:51

标签: json url postman url-parameters

我有一个请求URL,我想在其中过滤JSON数据,邮递员

https://x.x.x.x/apiBlaBla/

返回

{
"resource:resource": {
"resource_name": "csp-2100",
"ip_address": "x.x.x.x",
"name":"host_name_1",
"location":"location_1"
}
}

当我这样做

https://x.x.x.x/apiBlaBla/name

返回

{
"resource:name": "host_name_1"
}

我想在URL中添加一个附加参数以返回名称和位置

我尝试过

https://x.x.x.x/apiBlaBla/name/location

这不起作用

有关如何传递其他参数的任何建议,请

谢谢 R

0 个答案:

没有答案