Webex · Example Payload

Webex Reassignhost Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Reassignhost Example is an example object payload from Webex, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "reassignHost",
  "method": "POST",
  "path": "/meetings/reassignHost",
  "summary": "Reassign Meetings to a New Host",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "hostEmail": "john.andersen@example.com",
        "meetingIds": [
          "870f51ff287b41be84648412901e0402",
          "1d824a4a205042eba9574e00b711b226",
          "41be84640b711b8414a4a205042ebba9"
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "207",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "items": [
          {
            "meetingId": "870f51ff287b41be84648412901e0402",
            "httpStatus": 200
          },
          {
            "meetingId": "1d824a4a205042eba9574e00b711b226",
            "httpStatus": 404,
            "message": "The requested resource could not be found.",
            "errors": [
              {
                "description": "The meeting is not found."
              }
            ]
          },
          {
            "meetingId": "41be84640b711b8414a4a205042ebba9",
            "httpStatus": 200
          }
        ]
      }
    }
  ]
}