Been trying for a few hours to figure out how to build the get request to filter multiple expressions when querying the Veeam ONE RestAPI. Using info from here: https://helpcenter.veeam.com/docs/one/r ... ml?ver=120
Using this endpoint: /api/v2.1/alarms/triggeredAlarms
I'm just trying to filter out active alarms.
These ones work:
filter={"property":"status","operation":"notequals","collation":"ignorecase","value":"resolved"}
filter={"property":"status","operation":"notequals","collation":"ignorecase","value":"acknowledged"}
But when trying to combine those into one query like this:
filter={"property":"status","operation":"not","collation":"ignorecase","items":[{"operation":"equals","value":"resolved"},{"operation":"equals","value":"acknowledged"}]}
I receive the "SortAndFindParseException" error and I cant figure out what I'm doing wrong

/anders