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

Deletes a meeting recording by sending a request to a conference center.

Syntax

<DeleteRecordingRequest erase = "True" | "False">
</DeleteRecordingRequest>

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

Attributes

Name

Description

erase

Boolean attribute. Value range [True | False]. This attribute is optional.

If True, the recording is deleted permanently. A True value can be specified only for already expired or deleted recordings, but not for an active or restored recording.

NoteNote
Only account administrators can erase recordings.

If False and restoration is set to ON for the account by the Administrator, the recording is deleted but can be restored within the buffer time. However, if False and restoration is set to OFF for the account by the Administrator, the recording is permanently deleted. A False value can be specified only for an active or undeleted recording, but not for already expired or deleted recordings.

The restoration can be set for the account only through Live Meeting Manager by the account administrator through Administer->Roles and Policies->Edit Meeting Policies->Restoration.

This attribute can only be specified by account administrators.

Added in Live Meeting service API Update for Live Meeting 2007.

Element Information

Parent Element

Element

Occurrence

PlaceWareConfCenter

1

Child Element

Element

Occurrence

StringQuery

1

Remarks

The StringQuery child element must match exactly one non-deleted recording. The StringQuery element can search the following options:

  • name

  • reid

When the recording is removed, a DeleteRecordingReply is sent; if it is not deleted, a Fault element is returned. For more information about meeting and recording states after deletion see Maintaining Meetings and Recordings.See Fault Element for a complete list of fault return values.

Examples

The following series of examples demonstrate a successful request to delete a recording and several examples of request faults.

Example 1

This is an example of a successful request to delete a recording

Request

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
    <DeleteRecordingRequest erase="true">
      <StringQuery fieldName="name" operator="=" value="strategy"/>
    </DeleteRecordingRequest>
</PlaceWareConfCenter>

Reply

<PlaceWareConfCenter>
    <DeleteRecordingReply/>
</PlaceWareConfCenter>

Example 2

This is an example of a request to delete a recording that is already deleted.

Request

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
   <DeleteRecordingRequest >
      <StringQuery fieldName="name" operator="=" value="apiRecording2" />
   </DeleteRecordingRequest>
</PlaceWareConfCenter>

Reply

<PlaceWareConfCenter>
   <Fault>
      <FaultCode>Client.BadState.Recording</FaultCode>
      <FaultString> The recording you are trying to delete is already in Deleted state. It should be in either Active or Undeleted state.</FaultString>
      <OptionList>
         <TimeOption value="2007-07-11T23:28:46Z" name="time">
         </TimeOption>
         <StringOption value="z8879kdb3t" name="rapid.requestId">
         </StringOption>
      </OptionList>
   </Fault>
</PlaceWareConfCenter>

See Also

Concepts

DeleteRecordingReply Element

DeleteRecording Message