Skip to main content
Nintex Community Menu Bar

CreateProcessInstance method

  • September 26, 2006
  • 2 replies
  • 17 views

Forum|alt.badge.img+4
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

2 replies

Forum|alt.badge.img+9
  • Nintex Partner
  • September 26, 2006
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");

Forum|alt.badge.img+4
  • Author
  • September 26, 2006
Bob,

It worked great! Thanks.

Mike