Create report from Queue only with Reference

Hello,

i try to create a report from Queue to excel, but i need items only with reference start with “A”.
How to take only successful with ref reference start with “A”?

@a.dionisiev11

orchestrator http request to get the [quote=“a.dionisiev11, post:1, topic:575394, full:true”]
Hello,

i try to create a report from Queue to excel, but i need items only with reference start with “A”.
How to take only successful with ref reference start with “A”?


[/quote]

Try with orchestrator http request

use this

/odata/QueueItems?$filter=Status eq ‘Successful’&$filter=Startswith(Reference,‘A’)

you will get the excpected output

cheers

Activities - Get Queue Items - https://docs.uipath.com/

Use

  • “FilterStrategy” = StartWith
  • Reference = “A”

[quote=“efelantti, post:3, topic:575394”]
FilterStrategy
[

its working. Thanks

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