ListRecordingVisitors4 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.

Gets reports of the visitors who accessed a recording of a meeting.

Components

Component Type

XML Element

Request

ListRecordingVisitors4Request

Reply

ListRecordingVisitors4Reply

Remarks

A caller must be a member of the Administrator role or Organizer role. An Administrator receives a list of all recording visitors matching the query for all recordings in the conference center. An Organizer receives a list of only those recording visitors matching the query for recordings that he or she owns.

Examples

This example shows how to confirm the name and visitor ID (vid) of everyone who started to access the recording that has a reid value of 1dtgo4pe959wj during the month of July, 2002.

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

The following shows a request sent to a conference center.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <ListRecordingVisitors4Request deletedOK="True">
    <StringQuery fieldName="reid" operator="=" value="1dtgo4pe959wj"/>
    <TimeIntervalQuery fieldName="startTime">
      <TimeInterval startTime="2002-07-01T00:00:00Z"
                    endTime="2002-08-01T00:00:00Z"/>
    </TimeIntervalQuery>
    <FieldList>
      <Name>userName</Name>
      <Name>vid</Name>
    </FieldList>
  </ListRecordingVisitors4Request>
</PlaceWareConfCenter>

The following shows a reply returned from the conference center.

<PlaceWareConfCenter>
  <ListRecordingVisitors4Reply>
    <RecordingVisitor4>
      <OptionList>
        <StringOption name="userName" value="Olsen" />
        <StringOption name="vid" value="1u03x2893vi1l" />
      </OptionList>
    </RecordingVisitor4>
  </ListRecordingVisitors4Reply>
</PlaceWareConfCenter>

See Also

Concepts

ListRecordingVisitors4Request Element

ListRecordingVisitors4Reply Element