API (SOAP) – Add Note

API (SOAP) – Add Note



Introduction

 

You may use SOAP calls to add Notes to a Job Details screen.

As with other Production Integration API calls, you must reference the following Parameters

  • System
  • EventType
  • JobRef


Production Integration supported Systems

 

The following table lists the Systems and their Value

System

Value

Enfocus SWITCH

EnfocusSwitchScript

Kodak Prinergy Connect

prinergy

Esko Automation Engine

esko

 


ADD_NOTE EventType



The EventType Value to add a Note is ‘ADD_NOTE’. You must reference a key ({"QNTKey"}) of ‘15’, then specify ({"QNote"}) the text to display as a Note.
The following code will add “My Note” as a Note to Job J012345


 

function sendSoap {

            var resp = SOAP.request[“http://yourprintiq.com/WebService/ProductionIntegration.asmx”], {

                              “http://iq.co.nz/:RunEvent” : {

                                    System: “EnfocusSwitchScript”,

                                    EventType: “ADD_NOTE”,

                                    SystemData: {“QNTKey”: 15, “QNote”: “My Note”},

                                    JobRef: “J012345”,

                                    FileRefs: “J012345_Artwork file_1.pdf”,

                                    EventText: ““

                        }

                        },”http://iq.co.nz/RunEvent”);

            var resu = resp[“http://iq.co.nz/:RunEventResponse%E2%80%9D][%E2%80%9CRunEventResult”];

                        if (resu !== “Success”) {

                              throw new Error(“Invalid response from web service: “ + resu);    

                        }   

                        return resu;

 

      }

 


 Referencing Artwork file is optional



    • Related Articles

    • API (SOAP) – Event Types

      Introduction When sending SOAP calls from a third party system to printIQ, you need to specify a System, an Event Type, and Job Number with corresponding File Reference. Production Integration supported Systems The following table lists the Systems ...
    • API (SOAP) – Update Job Orientation

      Introduction You may use SOAP to call a production event that completes the edit job process, whereby allowing the job finish size to be altered. By incorporating this production event before or during a preflight check, you may avoid validation ...
    • API (SOAP) – Send Email

      Introduction You may use SOAP calls to send emails from printIQ. Email templates are configured via Admin / Customise, then the link to Emails   All of the email templates available on your system may be referenced by the following table of ID’s:   ...
    • 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 ...
    • IQconnect-Enfocus SWITCH on Simplified and Custom Quoting

      High Level Overview The IQconnect-enfocus SWITCH module allows administrators to integrate an Enfocus workflow within printIQ. By combining printIQ with the Enfocus product bundle you have the framework to build a dedicated workflow to match a range ...