Skip to main content
I am trying to instaniate a new process through the API and I cannot get the only process I have created to load.

//Create New Process Instance
oNewProcessInstance = oK2Connection.CreateProcessInstance("SystemAccessFormAdd");


Has anyone else run into this issue previously?

Mike Trouard
You'll need to use the fully qualified Process Name which is "Project NameProcess Name".

For example (in C#):

oNewProcessInstance = oK2Connection.CreateProcessInstance("My K2 ProjectExpense Process");
Bob,

It worked great! Thanks.

Mike

Reply