Webex · Example Payload

Webex Createinterpreter Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Createinterpreter 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": "createInterpreter",
  "method": "POST",
  "path": "/meetings/{meetingId}/interpreters",
  "summary": "Create a Meeting Interpreter",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "languageCode1": "en",
        "languageCode2": "de",
        "email": "marcus.hoffmann@example.com",
        "displayName": "Hoffmann"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "id": "OGQ0OGRiM2U3ZTAxNDZiMGFjYzJjMzYxNDNmNGZhN2RfZTA5MTJiZDBjNWVlNDA4YjgxMTZlMjU4Zjg2NWIzZmM",
        "languageCode1": "en",
        "languageCode2": "de",
        "email": "marcus.hoffmann@example.com",
        "displayName": "Hoffmann"
      }
    },
    {
      "status": "400",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "message": "'marcus.hoffmann@example.com' is found in more than one interpreter.",
        "trackingId": "8E12317727354470B5258F5B28D93FB9_1562296858685"
      }
    }
  ]
}