Strict query param checking of include, limit and skip
In this release we enable more strict checking of input values for the limit, skip and include query parameters. If the following new requirements are not met, the APIs are now throwing an InvalidQuery error with a HTTP/1.1 400 Bad Request response code:
- all parameters need numeric values
- limit needs to be in the range of 0 to 1000
- skip needs to be greater than 0
- include needs to be in the range of 0 to 10
Customers which used these parameters in the last two weeks with invalid values will not be affected.