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
The following table lists the Systems and their Value
System |
Value |
Enfocus SWITCH |
EnfocusSwitchScript |
Kodak Prinergy Connect |
prinergy |
Esko Automation Engine |
esko |
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;
}