I’m not sure I fully understand what you are trying to achieve, but here is a link for info on the matching algorithm…
If this doesn’t help could you provide a little more clarity?
I’m not sure what is meant by ‘catch all’ as my understanding is, that you would only return 1 example at a time depending on the response.
Thanks for your reply, I will try to get explain better.
Say I have several example requests with example responses
POST url/path/audi_123
POST url/path/audi_456
POST url/path/audi
Every request sent to name_* which is not a match to _123 and _456 I need to resolve to the default audi one
For example POST url/path/audi_0007 as not found should use the response in url/path/audi one instead.
Something like a wildcard variable to match not existing examples as described in the link you provided, but to somehow match the substring i.e. audi
So for my other examples in the collection I have which are
path/bmw_118
path/bmw_330
path/bmw
If I send a request to path/bmw_420 I then get not the bmw response but the audi one, because the matching alg is ordering them and gives me the top one.
So Id like to have a default reaponse for a particular group if that makes sense.