Request.json dynamic query

I had a similar requirement.

I’m glad I’m not alone. I don’t see any reason why query params need to be part of the template in the first place. It does not pose a security threat in any way. It only makes the request template unnecessarily rigid.

The way I worked around it was to construct the query params as part of the path itself.

"path": "/api/v2/contacts?email=xxx&mobile=yyy",
4 Likes