/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 ...
    • Freight Integration with EasyPost

      Snapshot: Customer needs to reach out to individual carrier that they use and ask their account credentials Customer needs to set up individual carrier account that they use in EasyPost. (You need the API key as per the above step to create a carrier ...
    • 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 ...