Hi,
I am new to postman and want to use it to mock APIs to test my application. I have created three mock servers matched to three different example responses. However, all three mock servers return the same response.
In the logs of the mockup I can see that each request is processed by the correct mock server.
Here is two of my responses. The only difference is the server name, the path and query parameters are the same.
My one parameter is a very long jq filter containing spaces. Could that be an issue?
Here is the full jq parameter:
{result:{loadpoints:[.loadpoints[]|{chargePower,chargerFeatureHeating,charging,connected,vehicleName,vehicleSoc,title,phasesActive,mode,chargeRemainingDuration}],pvPower,gridPower,grid:{power:.grid.power},homePower,siteTitle,batterySoc,batteryPower,vehicles:.vehicles|map_values({title}),forecast:(if .forecast.solar then {solar:.forecast.solar|{scale,today:{energy:.today.energy},tomorrow:{energy:.tomorrow.energy},dayAfterTomorrow:{energy:.dayAfterTomorrow.energy}}} else {} end)}}
Any advice is appreciated!