Webex · Example Payload

Webex List Meeting Invitees Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex List Meeting Invitees 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": "List Meeting Invitees",
  "method": "GET",
  "path": "/meetingInvitees",
  "summary": "List Meeting Invitees",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "items": [
          {
            "id": "870f51ff287b41be84648412901e0402_2628957",
            "email": "john.andersen@example.com",
            "displayName": "John Andersen",
            "coHost": false,
            "panelist": false,
            "meetingId": "870f51ff287b41be84648412901e0402"
          },
          {
            "id": "870f51ff287b41be84648412901e0402_2628962",
            "email": "brenda.song@example.com",
            "displayName": "Brenda Song",
            "coHost": false,
            "panelist": false,
            "meetingId": "870f51ff287b41be84648412901e0402"
          }
        ]
      }
    }
  ]
}