My question:
Is it possible to have multiple wildcards in one URI, save them and use them in a response?
I’ve already tried:
Sample request:
{{url}}/foo-service/{{product}}/{{brand}}/new
Expected response:
{
“newId”: “{{$randomUUID}}”,
“product”: “{{product}}”,
“brand”: “{{brand}}”
}
Actual response:
{
“error”: {
“name”: “mockRequestNotFoundError”,
“message”: “Double check your method and the request path and try again.”,
“header”: “No matching requests”
}
}