Webex · Example Payload

Webex Updatemeetingsimultaneousinterpretation Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Updatemeetingsimultaneousinterpretation 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": "updateMeetingSimultaneousInterpretation",
  "method": "PUT",
  "path": "/meetings/{meetingId}/simultaneousInterpretation",
  "summary": "Update Meeting Simultaneous interpretation",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "enabled": true,
        "interpreters": [
          {
            "languageCode1": "en",
            "languageCode2": "de",
            "email": "marcus.hoffmann@example.com",
            "displayName": "Hoffmann"
          }
        ],
        "hostEmail": "john.andersen@example.com"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "enabled": true,
        "interpreters": [
          {
            "id": "OGQ0OGRiM2U3ZTAxNDZiMGFjYzJjMzYxNDNmNGZhN2RfZTA5MTJiZDBjNWVlNDA4YjgxMTZlMjU4Zjg2NWIzZmM",
            "languageCode1": "en",
            "languageCode2": "de",
            "email": "marcus.hoffmann@example.com",
            "displayName": "Hoffmann"
          }
        ]
      }
    },
    {
      "status": "400",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "message": "The request could not be understood by the server due to malformed syntax. See 'errors' for more details.",
        "errors": [
          {
            "description": "'interpreters' should be empty when simultaneous interpretation is disabled."
          }
        ],
        "trackingId": "19085D1FCFEE445DA358375500D25E44_1598154356721"
      }
    }
  ]
}