getItemsRequest

Retrieves items returned in the response to getEventsRequest.

Request

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

Definitions

container

Specifies the container the item is in. To search all containers except folders shared with me, specify “folders.”

count

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

element

Identifies the item to retrieve.

Remarks

The getEventResponse method returns the ID of items that match the configureEventsRequest definition, but it does not return the items themselves. It is up to the application to retrieve the items.

For more information on getItemsRequest and filtering, see the appropriate definition in the GroupWise Web Services document.

Example

The following example shows how to retrieve event items over all folders. The container element tells the POA to search all folders (except folders shared with me) for the item.

<getItemsRequest>
   <container>folders</container>
   <view>default peek id container @type message recipients attachments
        subject</view>
   <filter/>
   <count>-1</count>
</getItemsRequest>