Query CVE id info from bes fixlet

Hi guys,
I am pretty new to bigfix, and I am trying to use REST API to query the CVE id for fixlets.
So I tried sending a GET request to:
https://:52311/api/query?relevance=(name of it, id of it, cve id list of it) of bes fixlets

Is there a way to exclude those whose CVE id field is Unspecified and N/A? Thanks

Yes, there is. You can filter results using whose clause.

In your case, you can use following relevance

(name of it, id of it, cve id list of it) of bes fixlets whose (exists cve id list of it AND cve id list of it is not contained by set of (""; "N/A"; "Unspecified"; "<Unspecified>"))

Just don’t forget to encode special characters in your URL. Something like following should work
https://<host>:52311/api/query?relevance=(name%20of%20it%2C%20id%20of%20it%2C%20cve%20id%20list%20of%20it)%20of%20bes%20fixlets%20whose%20(exists%20cve%20id%20list%20of%20it%20AND%20cve%20id%20list%20of%20it%20is%20not%20contained%20by%20set%20of%20(%22%22%3B%20%22N%2FA%22%3B%20%22Unspecified%22%3B%20%22%3CUnspecified%3E%22))