Hi Team
I am having issue while Getting the queue item by using the “Get queue item” Activity.
in result its return the null values
in Properties ‘From’ I am passing the datetime variable.
see the attach picture
@Sanket_Shinde1 ,
This is due to recent update in UiPath Orchestrator.
Refer this article for more details.
Get Queue items returning Items with “null” specific content | LinkedIn
Refer this for solution:
With Get Queue Item Activity:
With Orchestrator API:
@Mesut_Can , you need two API calls.
First API call to endpoint - /odata/QueueItems. This will return you all the queue Items int the Tennent.
We need two things from this API response. 1. OrganizationUnitId 2. Id
[image]
So we have two inputs required for our second API call to endpoint - /odata/QueueItems({key})
Configure API request as below.
key = Id
X-UIPATH-OrganizationUnitId = `OrganizationUnitId`
[image]
That’s it. Click execute.
Result:
[image]
Thanks,
Ashok …
Thanks,
Ashok