ListRecordings4 Message

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.

Lists recordings of meetings.

Components

Component Type

XML Element

Request

ListRecordings4Request

Reply

ListRecordings4Reply

Remarks

A caller must be a member of the Administrator or Organizer role. An Administrator receives a list of all matching recordings for all owners. An Organizer receives a list of only the matching recordings that he or she owns.

Examples

The following example shows how to list all non-deleted recordings started in June, 2002. Included in the list are the recording name, recording ID (reid), and meeting ID (mid) of the meeting in which each recording is made.

A TimeIntervalQuery represents a half-open interval. This query searches for all recordings that have a createOrModifyTime greater than or equal to the startTime and less than the endTime defined in the TimeInterval element.

The following shows the request sent to a conference center.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <ListRecordings4Request listDeleted="False">
    <TimeIntervalQuery fieldName="createOrModifyTime">
      <TimeInterval startTime="2002-06-01T00:00:00Z"
                    endTime="2002-07-01T00:00:00Z"/>
    </TimeIntervalQuery>
    <FieldList>
      <Name>mid</Name>
      <Name>name</Name>
      <Name>reid</Name>
      <Name>acl</Name>
      <Name>password</Name>
      <Name>audienceEntryControl</Name>
    </FieldList>
  </ListRecordings4Request>
</PlaceWareConfCenter>

The following shows a reply returned from the conference center.

<PlaceWareConfCenter>
  <ListRecordings4Reply>
    <Recording4>
      <OptionList>
        <StringOption name="mid" value="1wwfpczivu8ph"/>
        <StringOption name="name" value="gap"/>
        <StringOption name="reid" value="bvntuc1ix4mr"/>
        <EnumerationOption value="ACL" name="audienceEntryControl">
            <String>ACL</String>
            <String>None</String>
            <String>Password</String>
        </EnumerationOption>
      </OptionList>
    </Recording4>
  </ListRecordings4Reply>
</PlaceWareConfCenter>

See Also

Concepts

ListRecordings4Request Element

ListRecordings4Reply Element