Postman mock example response json data to include pathParms or queryParms or put body json object

9.9k Views Asked by At

I am using Postman 7.34.0

Now i am testing to use Postman to create mock server and mock data for the request.

After some study, i still did not get to make a flexible response in the mock data.

I have the update api and i will set pathParams, queryParams and also body to update the data.

So i want my mock data response to include some of the data from the update request.

I also check this Postman Mock Data, it has the below description to use {{userId}} in the response.

enter image description here

For example PUT {baseUrl}/:ouId/:customerServiceId enter image description here

So I added the mock example to response like below: enter image description here

But when i sent the update request, i got as below: enter image description here

I am wondering if i am doing wrong or postman not support the features?

And also would like to know does postman support mock response to have scripting. I just saw the 'Pre request script' and 'Test' can write script. For the mock example, it seems can only add the static data and not able to write script to build up the fake response data structure.

1

There are 1 best solutions below

3
On

Update:

You can use dynamic varaible for mock servers please ignore previous answer

What you have to do is :

1) in your example set header as:

Content-Type : application/json

enter image description here

2) Now in example body give the response you want as json:

enter image description here

3) Now create variable and values for this in the environment variable:

enter image description here

4) Now edit the mock server and make sure this environment is selected as the environment for the mock server:

Edit: enter image description here

Add:

enter image description here

and save it .

Output from mock server :

enter image description here

IGNORE BELOW ANSWER:

If you read the documentation:

https://learning.postman.com/docs/designing-and-developing-your-api/mocking-data/matching-algorithm/

You can use the same variables in the example’s response to use their captured values. Taking the same example, you can add a request body for the same example like this:

This will pass the value captured from the wildcard segment with the same variable name into the response.

So only variable captured in url wildcard will be passed to the response . Path variable are not normal varaibles so it cannot be set in mock response instead you can

url as : {{url}}/test/{{myuuid}}

and in body you can call this as {{myuuid}}

where myuuid is a variable defined in global, collection ,environment,data, or local scope

you can see my mock server response body has the value of myuuid variable defiend in environment variables:

enter image description here