Rest API to query computer by serial number (custom property)

I need to query computers with the rest api based on serial number which is a custom property we use. The following does not work:

(id of it) of bes computers whose ("Serial Number" of it as string = "xxxxxxxx")

How do I get the query to show a computer given the custom property “Serial Number”?

Try this -

(id of it) of bes computers whose (value of results from (bes property "Serial Number") of it as string = "XXXXXX")

1 Like

This works thank you so much!

1 Like

You should be able to optimize it a bit (right now it queries both bes properties and bes computers which can get very costly), you can bring it down to one query:

(id of computer of it) of results whose (exist value whose (it as string = "XXXXX") of it) of bes property "Serial Number"

2 Likes