Open ludovicoloreti opened 5 years ago
Glad that apimocker is helping you! I don't fully understand your question. So, you are sending a request with params both in the path, and the body. Right? What are you expecting from apimocker? Do you want to send different responses based on params from both the path and the body? I think this should work as long as your parameters all have different keys.
Hello, nice work! Really appreciate it.
I have a question regarding having multiple types of params, both in path (
var/:id
) and in body ({"dynamicValue": "string"}
).How to do with it? I've just read your documentation twice, but it seems hard to solve it.
Need something like this:
url: asd/:firstId/rotfl/:secondId body: "edit" -> {"value":"string"}
So I've got 2 int path (firstId and secondId) and a body in json.
My JSON looks like:
Could you please help 'bout this?