I want to return the dynamic response from the postman mock server.
When mock URL hits in the postman, we get request body and from request body I want to fetch the field value and return the value to response.
mock URL : {{url}}/customer
RequestBody:
{
"Id": 47896,
"name": userName
}
I want to send the Id value in the Response Body:
{
"Id":47896
}
We are creating the random Id value in our project and we hit mock URL with that value in request body.
Every time the id value will be different after calling the mock URL. we are processing on the Id value if it mismatch then we throw an error.
Anyway to process the request body?
In the postman documentation, I didn't find any conclusive solution.
There is a limitation you can use dynamic value only in postman app not in newman .
https://github.com/postmanlabs/newman/issues/2565
In postman app you can :
Set response in mock server as :
Choose environment for mock server :
click edit and choose and environment.
Enable persist variable value settings
Note that this will update both initial and current value with the value you will set as
pm.environment.set("name",valu")
in your script.Now set environment variable id through pre-reuest script:
output
Note:
You should send request two times, first time for the environment to sync with cloud
and second to get updated response , so try to send a dummy request before the actual request .
IN old app it was working fine now it looks like you need two request.