/api/v1/odata/Jobs

/api/v1/odata/Jobs

GET 
With GET Method on this end point.
/api/v1/odata/Jobs

Filtering Jobs by Status

It is possible to filter jobs based on status to exclude certain job states, such as Complete or Cancelled.

API Request to Retrieve Production Statuses

To get a list of all available production statuses, use the following request:

{{ServerURL}}api/v1/odata/ProductionStatuses

API Request to Filter Jobs by Status

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

Example Request URL

For IQ Application, where:

  • ProductionStatusId 17 = Cancelled
  • ProductionStatusId 21 = Completed

The request URL would be:

https://{{ServerURL}}/api/v1/odata/Jobs?$filter=ProductionStatusId%20ne%2021%20and%20ProductionStatusId%20ne%2017


    • Related Articles

    • printIQ Integration toolbox

      Integration Toolbox Getting started with integration and API overview Access printable attachment at the top or bottom of this article depending on your browser. Introduction  When it comes to workflow and integration, everyone’s requirements are ...
    • API (SOAP) – Status Update

      Introduction By referencing the Production Status ID’s, you may use SOAP calls to update a Job’s Production Status. Production Statuses are located under Admin / Configure Factory / Terminology (under General). Production Status ID's The following ...
    • Sage 50 Integration Documents

      Specialist Paul van Tongeren Introduction The integration to HyperSage is primarily a push from printIQ. This is a manual process requiring the user to export from within a record or to select multiple records from the appropriate area and click the ...
    • Tilia Phoenix Integration - Gang Module

      Overview The printIQ Gang Module allows an operator to filter jobs by a combination of status, stock and finishing options. The filtered jobs can be exported as a batch to import into Tilia Phoenix imposition software. Here the user can create ...
    • API - Creating Tax Code and Tax Rates in printIQ

      Overview The purpose of this document is to assist with retrieving and creating TaxCodes and TaxRates within printIQ. API Request Table Below is a list of endpoints used for retrieving, updating, and creating TaxCodes and TaxRates API Object Odata ...