How Do the Filter in the Queue

Hi team,

I need a flow that, I need to extract all the details from the queue and do the filter, Filter Condition: I need to filter the queue, Which having case id.
CaseID is a variable and we will get the CaseID = 12345
if it match I need to extract that value only.

Please help me in this.

@copy_writes

  1. You can use orchestrator api request where you can give filter on the specific content and get only items you need
  1. Can go eith linq after getting all items but here you can get max of 100 only so you need to use looping mechanism

Linq - listquitems.Where(function(x) x.SpecificContent("CaseId").ToString.Equals("RequiredID")).Count will give count if you use (0) will give the first queueitem which is filtered

Hope this helps

Cheers

You can use the
Get queue items activity
Now go to property of this activity and search for the property name FILTER STATEGY
Selected the drop-down as STARTSWITH
And
In the REFERENCE COLUMN ADD this 12345 in double quotes with column name which is passed as reference @copy_writes