I am trying to get the failed queue items from the Orchestrator queue using the below API. But it is failing with the response error code 999. Any insights will help on this.
Can you try to disable the Strict API setting in your Orchestrator → Tenant → Settings → General → API Settings?
Strict API → If enabled, certain API fields become non-filterable and/or non-sortable, thus helping prevent performance issues. You can see a list of these fields in the dedicated page.
This setting is enabled by default for new tenants, but existing tenants need to be opted in manually.
Keeping this option enabled at all times is a recommended best practice in API integrations.
Thank you for your reply, its a On-Prem Orchestrator 2024.10.0. There is no option in the Tenant → Settings → General tab to enable/disable the Strict API.
Provide more details on how you are running the query.
We need to see the Full URL, Parameters, Method, Headers, Payload.
In Swagger, are you able to run it?
From Swagger I am not able to do that due to the authentication issue, I am trying it from Postman. With the below collection I am not able to get all items, but I want to get only the failed items based on today’s end processing date.
From what I see the URL is incorrect (you added one extra odata in it).
Correct it, to be like https://ORCHESTRATOR_ADDRESS/odata/QueueItems
Then, you can add gradually extra filtering or expand if it is allowed.
Also, for GET requests, you don’t need a body in Orchestrator API calls.