Discussions
API payload to get asset based workorders
22 days ago by kiran t
Hi,
We are trying to get the workorders associated to an asset, both the workorders directly associated to the asset and where the asset is present as the equipment worked on.
We are using the below API and payload to achieve the above.
{
"QueryExpression":
{
"Criteria": {
"Conditions": [
{
"PropertyName": "EquipmentWorkedOn.Asset.Id",
"Operator": "In",
"Values": ["228413"]
},
{
"PropertyName": "Items.Asset.Id",
"Operator": "In",
"Values": ["228413"]
}
],
"FilterOperator": "Or"
},
"Distinct": true,
"PropertySet": { "Properties" : ["*","MainAsset.*","Items.Asset.*","Items.Task.*","Priority.*","Employee.*","SubType.*","Customer.*","Owner.*","Flag.*","EquipmentWorkedOn.*"]},
"Count": 4000,
"FirstResultIndex": 0
}
}
We are unable to receive all the workorders, as the workorders where it is associated to the asset, but does not have a equipment worked on added is not being returned in the API response.
Could you please provide information on this.
Thank you.