Discussions
Question about Query Location (Asset)
18 days ago by Aaron Lambert
I was given some sample Postman queries and one of them had a "Query Location (Asset)" step, where I was doing a query using the following conditions:
"Conditions": [
{
"PropertyName": "Info.TagId",
"Operator": "Equal",
"Values": [
"5970441-01-01-439" // Asset entity by TagId
]
},
{
"PropertyName": "IsOffline",
"Operator": "Equal",
"Values": [
"false" //static value to ensure only active asset is returned
]
}
]
When I try to execute a query with that criteria I get this error response:
{
"ErrorMessage": "Customer entity does not expose "Info" property.",
"ErrorCode": "ERROR_CODE_1002",
"TimeStamp": "2025-04-21T17:33:53.5056534Z"
}