Listing Meeting Recordings

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.

This operation follows the similar programming patterns as that for listing meetings.

The following is a sample XML element used for listing recordings with a start time between midnight (UTC) October 27, 2007, and midnight (UTC) July 1, 2008. The response should contain such information as the name, reid, organizer, and subject of a meeting. Deleted recordings are not to be included in the reply.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <ListRecordings4Request listDeleted="False">
    <TimeIntervalQuery fieldName="startTime">
      <TimeInterval startTime="2007-10-27T00:00:00Z"
                    endTime="2008-07-01T00:00:00Z"/>
    </TimeIntervalQuery>
    <FieldList>
      <Name>name</Name>
      <Name>reid</Name>
      <Name>owner</Name>
      <Name>title</Name>
    </FieldList>
  </ListRecordings4Request>
</PlaceWareConfCenter>

The conference center returns the following sample reply.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<PlaceWareConfCenter>
  <ListRecordings4Reply>
    <Recording4>
       <OptionList>
         <StringOption value="8G2G4J" name="name" />
         <StringOption value="776j070m1566lrz9" name="reid" />
         <StringOption value="jane" name="owner" />
         <StringOption value="audio recording in lm" name="title" />
        </OptionList>
      </Recording4>
      <Recording4>
        <OptionList>
          <StringOption value="N8379J" name="name"></StringOption>
          <StringOption value="f5bpl7m4x4xv37gn" name="reid" />
          <StringOption value="john" name="owner" />
          <StringOption value="Live Meeting training" name="title" />
        </OptionList>
      </Recording4>
    </ListRecordings4Reply>
</PlaceWareConfCenter>

See Also

Concepts

Using the Live Meeting service API