Webex · Schema

ReassignMeetingResponseObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
meetingId string Unique identifier for the meeting to be reassigned host.
httpStatus string HTTP status code for the meeting reassignment result.
message string General message for the host reassignment of `meetingId` if it fails.
errors array Detailed descriptions for the host reassignment of `meetingId` if it fails.
View JSON Schema on GitHub

JSON Schema

webex-reassignmeetingresponseobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReassignMeetingResponseObject",
  "title": "ReassignMeetingResponseObject",
  "type": "object",
  "required": [
    "meetingId",
    "httpStatus"
  ],
  "properties": {
    "meetingId": {
      "type": "string",
      "example": "560d7b784f5143e3be2fc3064a5c5888",
      "description": "Unique identifier for the meeting to be reassigned host."
    },
    "httpStatus": {
      "type": "string",
      "example": "404",
      "description": "HTTP status code for the meeting reassignment result."
    },
    "message": {
      "type": "string",
      "example": "The requested resource could not be found.",
      "description": "General message for the host reassignment of `meetingId` if it fails."
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ReassignMeetingErrorDescriptionObject"
      },
      "description": "Detailed descriptions for the host reassignment of `meetingId` if it fails."
    }
  }
}