Orchestrator QueueDefinitions endpoint not showing SpecificDataJsonSchema

When I make a call with a specific Queue Id it shows the SpecificDataJsonSchema:

But when I call QueueDefinitions with no Id provided, to get a list of all queues, the schema doesn’t show:

image

This means to find queues that have a schema, I have to first get all queues, then For Each through all of them and repeatedly call the API again to check if each queue has a schema. This is time consuming and resource intensive.

How can I get it to show me the schema value when pulling a list of all queues?

Ha, of course I figured it out 2 minutes after posting this.

The solution is to specify which properties to return in the query:

image

Now it shows the schema if the queue has one.

Then I can filter on the schema field to only get queues that have one:

image

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