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

Deletes a previously scheduled meeting in a Live Meeting conference center.

Components

Component Type

XML Element

Request

DeleteMeetingRequest

Reply

DeleteMeetingReply

Remarks

A caller must be a member of the Administrator role or be the Organizer that owns the meeting.

When this message returns successfully, the specified meeting is deleted; Deleting a meeting removes it from the schedule and unpublished recordings are deleted. The Documents and published recordings of the meeting are not deleted. Deleted meetings (meetings where erase is not set to True) do not count toward the schedule limit for the account. Deleted meetings and recordings free up licenses that are then available for use. The seats you had used in the deleted meeting become available again as reserved seats.

When you delete an Active or Undeleted meeting (erase=false), the meeting status is changed to Deleted. None of the published recordings are deleted. The uploaded resources for those meetings are not deleted. The recordings are not deleted in the event the recorded meeting is restored by a RestoreMeeting request. However, when you call DeleteMeeting and specify erase = true on a meeting with a Deleted or Expired status, the meeting is permanently removed with all its uploaded resources. For more information about deleting a meeting or recording, see Maintaining Meetings and Recordings.

The bulk delete option is new. The new shared element StringListQuery is used to pass multiple mids. For more information about the shared element, see StringListQuery or DeleteMeetingRequest.

Important

Deleted meetings do not count towards the schedule limit for the account similar to meetings that are permanently deleted (removed). However, deleted meetings if restored count towards this limit.

Examples

Example 1: Deleting a Scheduled Meeting

This example shows how to delete a scheduled meeting from a conference center.

The following code shows a request sent to a conference center.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <DeleteMeetingRequest>
    <StringQuery fieldName="mid" operator="=" value="bvntuc1ix4mr"/>
  </DeleteMeetingRequest>
</PlaceWareConfCenter>

The following shows a reply returned from the conference center when the requested meeting is deleted.

<PlaceWareConfCenter>
    <DeleteMeetingReply/>
</PlaceWareConfCenter>

Example 2: Deleting a Meet Now Meeting

This example shows how to delete a Meet Now meeting run by a user named "apiuser". Note how the to-be-deleted meeting is specified using a StringQuery element that sets the value of personalPlaceOf to the users user ID.

The following code is the request sent to the conference center.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
    <DeleteMeetingRequest>
      <StringQuery fieldName="personalPlaceOf" operator="=" value="apiuser"/>
    </DeleteMeetingRequest>
</PlaceWareConfCenter>

The following is the reply returned from the conference center when the request is processed successfully.

<PlaceWareConfCenter>
    <DeleteMeetingReply/>
</PlaceWareConfCenter>

Example 3: Deleting Meetings with erase set to true

The following code shows the request sent to the conference center. If the request is successful, the meetings are not restorable.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <DeleteMeetingRequest erase="True">
    <StringListQuery fieldName="mid">
      <String>bvntuc1ix4mr</String>
      <String>ddvntuc5ix2mr</String>
    </StringListQuery>
  </DeleteMeetingRequest>
</PlaceWareConfCenter>

The following is the reply returned from the conference center.

<PlaceWareConfCenter>
    <DeleteMeetingReply>
    </DeleteMeetingReply>
</PlaceWareConfCenter>

See Also

Concepts

DeleteMeetingRequest Element

DeleteMeetingReply Element

CreateMeeting Message

ModifyMeeting Message