acceptActionItems

Accepts the action items as belonging to the currently authenticated user.

Parameters

actionItems is the array of actionItem objects to be accepted.

Errors

ActionItemInvalidException
A problem occurred when one of the action items did not exist or if the user could not accept it.
java.lang.Exception
A problem occurred with any of the individual a or a system error occurred while the request was processed.
InvalidArgumentException
A problem occurred when any of the passed arguments are invalid.

Sample request

<soapenv:Envelope 
	xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
	xmlns:ws="http://ws.tririga.com" 
	xmlns:dto="http://dto.ws.tririga.com">
   <soapenv:Body>
      <ws:acceptActionItems>
         <ws:ActionItems>
            <dto:ActionItem>
               <dto:taskId>12345</dto:taskId>
               <dto:workflowId>12345</dto:workflowId>
            </dto:ActionItem>
         </ws:ActionItems>
      </ws:acceptActionItems>
   </soapenv:Body>
</soapenv:Envelope>

Sample response

The acceptActionItems method has no response. The request is successful if no faults are thrown.