Webex · Schema
ReassignMeetingRequestObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| hostEmail | string | Email address of the new meeting host. |
| meetingIds | array | List of meeting series IDs to be reassigned the new host. The size is between 1 and 100. All the meetings of `meetingIds` should belong to the same site, which is the `siteUrl` in the request header, |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReassignMeetingRequestObject",
"title": "ReassignMeetingRequestObject",
"type": "object",
"required": [
"hostEmail",
"meetingIds"
],
"properties": {
"hostEmail": {
"type": "string",
"example": "[email protected]",
"description": "Email address of the new meeting host."
},
"meetingIds": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of meeting series IDs to be reassigned the new host. The size is between 1 and 100. All the meetings of `meetingIds` should belong to the same site, which is the `siteUrl` in the request header, if specified, or the admin user's preferred site, if not specified. All available Webex sites and the preferred sites of a user can be retrieved by [Get Site List](/docs/api/v1/meeting-preferences/get-site-list) API."
}
}
}