SOAP API - skipWorkItem

The table summarizes the SOAP API - skipWorkItem.

Request Uses the skipWorkItem element (from the WorkItemManagementService schema)
Parameter notes
  • workItemID: ID of the work item to be completed.
  • version: (Optional) If it is omitted, the latest version is used.
Response Returns a skipWorkItemResponse element (from the WorkItemManagementService schema)
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.brm.n2.tibco.com">

   <soapenv:Header/>

   <soapenv:Body>

      <api:skipWorkItem>

         <workItemID id="2" version="1"/>

      </api:skipWorkItem>

   </soapenv:Body>

</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">

   <SOAP-ENV:Header/>

   <SOAP-ENV:Body>

      <skipWorkItemResponse xmlns="http://api.brm.n2.tibco.com">

         <success xmlns="">true</success>

      </skipWorkItemResponse>

   </SOAP-ENV:Body>

</SOAP-ENV:Envelope>