Hi All,
Using the below end point I need to get the filtered data using http request
https://<your_orchestrator_url>/odata/Tasks?$filter=Status eq ‘Unassigned’ or Status eq ‘Incomplete’
I am getting error like
can any one suggest me on this??
Hi All,
Using the below end point I need to get the filtered data using http request
https://<your_orchestrator_url>/odata/Tasks?$filter=Status eq ‘Unassigned’ or Status eq ‘Incomplete’
I am getting error like
can any one suggest me on this??
@naveen.s
we recommend to use swagger for prototyping
from the task model docu we can derive the status enum:
so there is no Incomplete status and this may lead to the issue
Hi,
There is no ‘InComplete’ status. You might have to use ‘Pending’ and try using ‘in’ condition in ODATA query.
$filter=Status in (‘Pending’, ‘Unassigned’, ‘Completed’)