/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 ...
    • Setting Up Infigo Integration with printIQ

      Summary This article outlines the steps required to configure your Infigo platform to integrate with printIQ. Most of the setup is performed within the Infigo environment. Note: The printIQ team does not manage the Infigo-side configuration. Please ...
    • 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 ...
    • 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 ...
    • Capacity Planner API Integration

      Summary: The V0 Quote Process collection now contains 6 endpoints that will allow a 3rd party system to integrate with PrintIQ's Capacity Planning module. A Postman collection is attached or you can access these endpoint details via ...