Webex · Example Payload

Webex Create A Meeting Invitee Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Create A Meeting Invitee 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": "Create a Meeting Invitee",
  "method": "POST",
  "path": "/meetingInvitees",
  "summary": "Create a Meeting Invitee",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "email": "john.andersen@example.com",
        "displayName": "John Andersen",
        "meetingId": "870f51ff287b41be84648412901e0402",
        "coHost": false,
        "hostEmail": "brenda.song@example.com",
        "panelist": false,
        "sendEmail": true
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "id": "870f51ff287b41be84648412901e0402_2628982",
        "email": "john.andersen@example.com",
        "displayName": "John Andersen",
        "coHost": false,
        "panelist": false,
        "meetingId": "870f51ff287b41be84648412901e0402"
      }
    },
    {
      "status": "409",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "message": "User is already a meeting invitee.",
        "errors": [
          {
            "description": "User is already a meeting invitee."
          }
        ],
        "trackingId": "8E12317727354470B5258F5B28D93FB9_1562296858685"
      }
    }
  ]
}