Reputation: 123
is there a way to limit swagger query params? for example - if somebody submits a GET
request like:
/users/bob?product=10
and accidentally typed in /users/bob?products=10
- is there a swagger property I can add that will then throw an error?
Upvotes: 0
Views: 958
Reputation: 156
Swagger allows you to describe the REST APIs. If product
is the only query parameter allow, then the server should throw an exception if it finds other query parameters in the request from the client.
In other words, there's no way in Swagger to say parameters with certain names are not allowed as other parameters not documented in Swagger are disallowed by default.
Upvotes: 1