在 Postman 中,如何从 Get Request 中获取响应主体,并将其放入 PUT 请求中并稍作更改

In Postman, how do I take a response body from a Get Request, and put it in a PUT request with minor changes

我有运行一个POST创建新合同的请求。此请求的 Json 响应是一个字符串 ID。

"03007"

我的 Post 请求有一个将响应保存为环境变量的测试。

var jsonData = JSON.parse(responseBody);
postman.setEnvironmentVariable("newContractNb", jsonData);

然后我有一个 GET 请求,将响应变量插入到请求中,以便我获取我创建的合同的数据。

我的回复是这样的

{
    "contractNb": "03007",
    "progSrvcNm": "009",
    "contractPrtyNm": "PostmanAutomationContract",
    "contractCd": "000",
    "signDt": "2018-01-01T00:00:00",
    "startDt": "2018-01-01T00:00:00",
    "endDt": "2025-01-01T00:00:00",
    "remitTerms": 30
}

我在 Get 方法中有一个 Test 将此响应主体保存为变量。

pm.environment.set('getRequestBody', pm.response.json())

是否可以在 PUT 请求的 Body 或 Pre-req 部分使用此变量,但以某种方式使其改变 select 参数 - 例如仅 contractPrtyNm ?

当您收到来自“{{url}}/{{newContractNb}}”的响应时,您可以尝试这样的操作。修改 属性 然后在请求中设置正文:

var jsonData = pm.response.json();
jsonData.progSrvcNm = "blah"; 

pm.environment.set("response_b", jsonData);

然后在您的 PUT 请求(类型无关紧要)正文中将其设置为

pm.environment.get("response_b");

感谢@Danny Dainton 的帮助!

我在 post 之后的 Get 方法包含以下内容,以便将响应保存为变量并将其全部编辑。

let jsonData = pm.response.json()

jsonData.stuff = "PostmanAutomationContractEdit"
jsonData.otherStuff = 45
jsonData.altId1 = "AutoEdit"

function thing(id, classification, foo, foos, barf, contactNb) {
    this.id     = id
    this.classification = classification
    this.foo      = foo
    this.foos     = foos
    this.barf      = barf
    this.contactNb      = contactNb
}

let newThingData = new thing(pm.environment.get('newContractNb'), "bil", "y", "n", jsonData.thing[0].things, "000914")

jsonData.stuff[0].nextLevelStuff[0] = newPartyData

pm.environment.set('responseEdit', JSON.stringify(jsonData))

然后我 运行 我的 PUT 方法,主体中有变量。

{{responseEdit}}