getItems

Retrieves items forwarded via getEventResponse, as defined in GroupWise SOAP. For more information on GroupWise SOAP, including more information on the structure and elements described herein, see the Schema Elements in the GroupWise Web Services documentation.

Request

<getItemsRequest>
   <container>
   <filter>
     <element>
           <op>
           <field>  
         <value>
        </element>
   </filter>
</getItemsRequest>

Elements

container

Specifies the container the item is in.

count

Specifies how many items to retrieve in one response. If count is not specified, all items are returned.

element

Identifies the item to retrieve.

field

Specifies the GroupWise field or attribute to use in the element filter process.

filter

Specifies how to filter the items.

op

Specifies the boolean operator to use in the element filter process.

value

Specifies the value of the field or element to use in the element filter process.

Remarks

getItemsRequest requires a filter to match the IDs instead of using the IDs directly.

Example

Following is a sample getItemsResponse:

<getItemsRequest>
   <container>A.AutoDomain.AutoPO1.100.0.1.0.1@13</container>
   <filter>
      <element>
           <op>eq</op>
           <field>id</field>  
         <value>419482D2.AutoDomain.AutoPO1.100.1363230.1.2734.1
            </value>
        </element>
   </filter>
</getItemsRequest>