9.1 Job list

POST http://{{rip_ip}}:5438/jobs

Gets the list of jobs currently local at the RIP.

Request

Filter on the jobs to return. An empty body will return all the jobs in the order of processing. Else if an JSON Object is provided only the jobs matching all the filter criteria set will be returned.

  • Name (string, optional) : Name of the job, any job starting with this name will be included.
  • Device (guid, optional) : DeviceGUID, only jobs for this device are returned.
  • Queue (string, optional) : Queue name, any job created by a queue starting with this name is included.
  • Done (integer, optional) : Jobs with a done-copy counter matching this number are included.
  • Requested (integer, optional) : Jobs with a requested-copy counter matching this number are included.
  • Hold
  • Print (bool, optional) : Print or Not Print jobs are included
  • Cut (bool, optional) : Contour-cut or Not Contour jobs are included

Response

Array of objects containing basic job information.

  • id (guid) : JobGUID.
  • Device (string) : DeviceGUID
  • Name (string) : Name of the job
  • Queue (string) : Name of the queue that produced the job
  • Requested (integer) : Number of copies requested
  • Done (integer) : Number of copies done/printer/cut
  • Print (bool) : This is a print job
  • Cut (bool) : This is a contour-cut job