SOAP API - resumeProcessInstance

The table summarizes the SOAP API - resumeProcessInstance.

Request Uses the processID element (from the ProcessManagement schema)
Parameter notes processID: Can be obtained from listProcessInstances , queryProcessInstances , and queryProcessInstancesAlt .

The specified process instance must be in a SUSPENDED state for the request to be valid. An illegalStateFault is returned if the process instance is in any other state.

Response Returns a success element (from the ProcessManagement schema)
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:proc="http://www.tibco.com/bx/2009/management/processManagerType">
   <soapenv:Header/>
   <soapenv:Body>
      <proc:processID>pvm:0a12g</proc:processID>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <proc:success xmlns:proc="http://www.tibco.com/bx/2009/management/processManagerType">OK</proc:success>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>