{ "$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": "john.andersen@example.com", "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." } } }