It is possible to filter jobs based on status to exclude certain job states, such as Complete or Cancelled.
To get a list of all available production statuses, use the following request:
{{ServerURL}}api/v1/odata/ProductionStatuses
To retrieve all jobs except those with a status of Complete (ID: 21) or Cancelled (ID: 17), use the following request:
{{ServerURL}}api/v1/odata/Jobs?$filter=ProductionStatusId ne 17 and ProductionStatusId ne 21
For IQ Application, where:
The request URL would be:
https://{{ServerURL}}/api/v1/odata/Jobs?$filter=ProductionStatusId%20ne%2021%20and%20ProductionStatusId%20ne%2017