URL orchestrator request with more than one fitler

Hi all!

I´m trying to get the elements from a specific queue but also with Status ‘Failed’, so I tried this Get URL

DefaultTenant/orchestrator_/odata/QueueItems?$QueueDefinitionId eq 715671&$Status eq ‘Failed’

Im getting every Item of that queue, I only want to retrieve the ones that failed.

PD: I know I can get em with get queue items activity, but I need the URL

Thank you in advance

Hi ,

try this $filter option

/DefaultTenant/orchestrator_/odata/QueueItems?$QueueDefinitionId eq [QueueDefinitionId]&$filter=([Filter1] eq ‘[Value1]’) and ([Filter2] eq ‘[Value2]’)

Eg:
/DefaultTenant/orchestrator_/odata/QueueItems?$QueueDefinitionId eq 715671&$filter=(Status eq ‘Failed’) and (Priority eq ‘High’)

1 Like

Now I´m getting every Failed item from every queue, but it´s a progress

DefaultTenant/orchestrator_/odata/QueueItems?$filter=QueueDefinitionId eq 715671 And Status eq 'Failed'
1 Like

nailed it!
Tried with & but not with And

Thank you, that works

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