HTTP Request: OData Clause

I have requested odata/QueueItems from my Cloud Orchestrator. Can anyone help me to write a correct endpoint OData Clause to filter Failed from Status AND 1270286 from OrganizationUnitId and expand ProcessingException? I managed to filter the value but couldn’t expand the ProcessingException. Thanks

1 Like

Hey @azeem_rosli

The property ProcessingException will be by default expanded.

curl -X GET "https://sppw031.prod.mobily.lan/odata/QueueItems?%24filter=Status%20eq%20'Failed'" -H  "accept: application/json" -H  "X-UIPATH-OrganizationUnitId: 1270286"

Thanks
#nK

Thanks @Nithinkrishna. You’re right. I’ve just rechecked it. It seems that my invoke code didn’t properly convert the json value to datatable

1 Like

Cool @azeem_rosli :slightly_smiling_face::+1:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.