Your API query may have invalid filters. If your API query has invalid filters, the API returns the unfiltered result of your query.
You should refer to our API documentation for examples of correct filters for each endpoint.
Example
When querying config/host
and filtering to only return host information for the host where id = 1
, information about all hosts is returned if the filter is invalid.
This incorrect query returns information about all hosts:
GET config/host?host.id=1
This correct query returns information about only the host for which id = 1
:
GET config/host?s.id=1
Comments
0 comments
Please sign in to leave a comment.