resumeProcessInstance

This method resumes the specified suspended process instance.

The specified process instance’s status changes from SUSPENDED to ACTIVE. And the associated work items that were suspended when the process instance was suspended are also resumed — their state is changed from SUSPENDED to the state they were in when the process instance was suspended.

This method has two signatures: one to resume a single process instance, and one to resume multiple process instances.

Also see: suspendProcessInstance.

Syntax

resumeProcessInstance(id,
                      suppressConfirm);
resumeProcessInstance(ids,
                      suppressConfirm);

Parameters

  • id - (String) A process instance ID, identifying the process instance to resume.
  • suppressConfirm - (boolean) (optional) If true, suppresses the confirmation message. If false (the default), the confirmation message is displayed.
  • ids - (String[]) An array of process instances IDs, identifying the process instances to resume.

Returns

none