In version 3.11 I have everything set up to run multiple endpoints with different responses. In 3.12 however, they suddenly respond with the same value instead of different values.
As you can see, the following 2 mocks have a different URL. They should return their own response based on the request URL.
{
"name": "getGebruikerRollen",
"request": {
"url": "/api_v2/gebruikers/mijnGebruiker/rollen",
"method": "GET"
},
"responses": {
// ... RESPONSES 1
}
}
{
"name": "getMijnGebruiker",
"request": {
"url": "/api_v2/gebruikers/mijnGebruiker",
"method": "GET"
},
"responses": {
// ... RESPONSES 2
}
}
In 3.11 I get the correct responses. In 3.12 I always get the response from the /api_v2/gebruikers/mijnGebruiker even on the /api_v2/gebruikers/mijnGebruiker/rollen call.
In version 3.11 I have everything set up to run multiple endpoints with different responses. In 3.12 however, they suddenly respond with the same value instead of different values.
As you can see, the following 2 mocks have a different URL. They should return their own response based on the request URL.
{ "name": "getGebruikerRollen", "request": { "url": "/api_v2/gebruikers/mijnGebruiker/rollen", "method": "GET" }, "responses": { // ... RESPONSES 1 } }{ "name": "getMijnGebruiker", "request": { "url": "/api_v2/gebruikers/mijnGebruiker", "method": "GET" }, "responses": { // ... RESPONSES 2 } }In
3.11I get the correct responses. In3.12I always get the response from the/api_v2/gebruikers/mijnGebruikereven on the/api_v2/gebruikers/mijnGebruiker/rollencall.