I am trying to create a query that calls a bunch of random property data. Some of the properties were manually created and others include Reserved properties. I am specifically having issues calling Computer Type, I have no issues pulling other reserved properties (like ComputerID or Last Report Time).
So I start off with this query
https://A.B.C.D:52311/api/query?relevance=(id of it, device type of it, name of it | “[name not reported]”, last report time of it) of (members of bes computer group whose (name of it = “All Windows Workstations”))
<Tuple>
<Answer type="integer">713</Answer>
<Answer type="string">Laptop</Answer>
<Answer type="string">ABC123</Answer>
<Answer type="time">Thu, 06 Feb 2020 07:43:22 -0500</Answer>
</Tuple>
when I try to add computer type to the query it I get not defined error message
https://A.B.C.D:52311/api/query?relevance=(id of it, device type of it, computer type of it, name of it | “[name not reported]”, last report time of it) of (members of bes computer group whose (name of it = “All Windows Workstations”))
<Error>The operator "computer type" is not defined.</Error>
If I try it by calling the property directly it also does not return value (just the return)
https://A.B.C.D:52311/api/query?relevance=(id of it, device type of it, (concatenation " " of values of result (it, bes properties “Computer Type”) | “[Unknown]”), name of it | “[name not reported]”, last report time of it) of (members of bes computer group whose (name of it = “All Windows Workstations”))
<Tuple>
<Answer type="integer">713</Answer>
<Answer type="string">Laptop</Answer>
<Answer type="string">[Unknown]</Answer>
<Answer type="string">ABC123</Answer>
<Answer type="time">Thu, 06 Feb 2020 07:43:22 -0500</Answer>
</Tuple>
I ran the /api/properties and see Computer Type IsReserved is 1
<Name>Computer Type</Name>
<ID>307703</ID>
<IsReserved>1</IsReserved>
Any Ideas why this one property is not reporting back properly? I am hoping I am just missing something little here.