ListMeetingsReply Element

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Contains a list of meetings matching the query.

Syntax

<ListMeetingsReply>
    ...
</ListMeetingsReply>

The following sections describe attributes, parent elements, and child elements.

Attributes

None.

Element Information

Parent Element

Element

Occurrence

PlaceWareConfCenter

1

Child Element

Element

Occurrence

MeetingReply

0 or more

InfoWarnFaultList

0 or 1

Remarks

If the requestor is an organizer, the reply is limited to meetings created by that organizer.

When the request cannot be processed, a Fault element is returned.

The following example illustrates how to query for meetings that had visitors during a given time period. When combined with the ListVisitorsRequest, this might be useful for collecting usage information.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <ListMeetingsRequest listDeleted="True">
    <TimeIntervalQuery fieldName="visitedIn">
      <TimeInterval startTime="2006-03-19T00:00:01Z"
                    endTime="2006-03-25T23:59:59Z">
      </TimeInterval>
    </TimeIntervalQuery>
    <FieldList>
      <Name>owner</Name>
      <Name>name</Name>
      <Name>startTime</Name>
      <Name>endTime</Name>
    </FieldList>
  </ListMeetingsRequest>
</PlaceWareConfCenter>

The following code shows the XML returned by ListMeetingsReply.

<PlaceWareConfCenter>
  <ListMeetingsReply>
    <MeetingReply>
      <OptionList>
        <StringOption value="Chris Ashton" name="owner"></StringOption>
        <StringOption value="mymeeting" name="name"></StringOption>
        <TimeOption value="2006-03-24T17:00:00Z" name="startTime"></TimeOption>
        <TimeOption value="2006-03-24T18:00:00Z" name="endTime"></TimeOption>
      </OptionList>
    </MeetingReply>
  </ListMeetingsReply>
</PlaceWareConfCenter>

See Also

Concepts

ListMeetingsReply Element

ListMeetings Message