Is it possible in the API Blueprint to define a set of possible responses for a given endpoint?
For example if I have a endpoint such as /movie/{id} I'd like to be able to define a set of movie records so that in the mock server I could GET /movie/1 or GET /movie/2 or GET /movie/3 and get the relevant record.
The examples I've seen all seem to define just one possible response.
It's not possible to simulate this using a single action, but there is a workaround.
Now, if you hit
/movie/2
, the mock server sends the appropriate response. Thanks.