Orchestrator HTTP Request and Multiple Filters on Queue Items

I am trying to filter down the results from an Orchestrator HTTP Request, to show only items from a specific queue in a certain timeframe. Has anyone done this before? I can’t find many examples for this scenario. Screenshot shows what I’m starting with. This is in my Relative Endpoint, but wondering if I can include multiple filters here and what the syntax would look like?

“/odata/QueueItems?$filter=QueueDefinitionId eq 95&$expand=Robot”

@erica.rocks

You can use multiple…to test you can tey with swagger as well…here is an example

/odata/QueueItems?%24filter=QueueDefinitionId%20eq%201111%20and%20CreationTime%20ge%202024-09-06T19%3A04%3A00.873Z

QueueDefinitionId eq 1111 and CreationTime ge 2024-09-06T19:04:00.873Z

Cheers

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