getActionItems

Gets the ActionItems in the queue associated with the user ID of the current session.

Returns

An array of ActionItem objects for the user.

Errors

java.lang.Exception
A system error occurred when the request was being processed.

Sample request

<soapenv:Envelope 
	xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
	xmlns:ws="http://ws.tririga.com">
   <soapenv:Body>
      <ws:getActionItems/>
   </soapenv:Body>
</soapenv:Envelope>

Sample response

<soap:Envelope 
	xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <soap:Body>
      <getActionItemsResponse xmlns="http://ws.tririga.com">
         <out>
            <ns1:ActionItem xmlns:ns1="http://dto.ws.tririga.com">
               <taskId xmlns="http://dto.ws.tririga.com">193826</taskId>
               <workflowId xmlns="http://dto.ws.tririga.com">14335629</workflowId>
            </ns1:ActionItem>
            <ns1:ActionItem xmlns:ns1="http://dto.ws.tririga.com">
               <taskId xmlns="http://dto.ws.tririga.com">193826</taskId>
               <workflowId xmlns="http://dto.ws.tririga.com">14335529</workflowId>
            </ns1:ActionItem>
         </out>
      </getActionItemsResponse>
   </soap:Body>
</soap:Envelope>