Webex · Example Payload

Webex Updatebreakoutsessions Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Updatebreakoutsessions 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": "updateBreakoutSessions",
  "method": "PUT",
  "path": "/meetings/{meetingId}/breakoutSessions",
  "summary": "Update Meeting Breakout Sessions",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "hostEmail": "john.andersen@example.com",
        "sendEmail": true,
        "items": [
          {
            "name": "Breakout Session 1",
            "invitees": [
              "rachel.green@example.com",
              "monica.geller@example.com"
            ]
          },
          {
            "name": "Breakout Session N",
            "invitees": [
              "ross.geller@example.com",
              "chandler.bing@example.com"
            ]
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "items": [
          {
            "id": "18d2e565770c4eee918784ee333510ec",
            "name": "Breakout Session 1",
            "invitees": [
              "rachel.green@example.com",
              "monica.geller@example.com"
            ]
          },
          {
            "id": "7ec0782fccf84a5b8cb56d97c69cc771",
            "name": "Breakout Session N",
            "invitees": [
              "ross.geller@example.com",
              "chandler.bing@example.com"
            ]
          }
        ]
      }
    }
  ]
}