Webex · Example Payload

Webex Update Personal Meeting Room Options Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Update Personal Meeting Room Options 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": "Update Personal Meeting Room Options",
  "method": "PUT",
  "path": "/meetingPreferences/personalMeetingRoom",
  "summary": "Update Personal Meeting Room Options",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "topic": "John's PMR",
        "hostPin": "4325",
        "enabledAutoLock": false,
        "autoLockMinutes": 10,
        "enabledNotifyHost": true,
        "supportCoHost": true,
        "supportAnyoneAsCoHost": false,
        "allowFirstUserToBeCoHost": false,
        "allowAuthenticatedDevices": false,
        "coHosts": [
          {
            "email": "john.andersen@example.com",
            "displayName": "John Andersen"
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "topic": "John's PMR",
        "hostPin": "4325",
        "enabledAutoLock": false,
        "autoLockMinutes": 10,
        "enabledNotifyHost": true,
        "supportCoHost": true,
        "supportAnyoneAsCoHost": false,
        "allowFirstUserToBeCoHost": false,
        "allowAuthenticatedDevices": false,
        "coHosts": [
          {
            "email": "john.andersen@example.com",
            "displayName": "John Andersen"
          }
        ],
        "personalMeetingRoomLink": "https://site4-example.webex.com/meet/john",
        "sipAddress": "john.andersen@example.com",
        "dialInIpAddress": "192.168.100.100",
        "telephony": {
          "accessCode": "1234567890",
          "callInNumbers": [
            {
              "label": "US Toll",
              "callInNumber": "123456789",
              "tollType": "toll"
            }
          ],
          "links": [
            {
              "rel": "globalCallinNumbers",
              "href": "/v1/meetings/0fc6ec1109e0d9b6c94e1f6caccda976/globalCallinNumbers",
              "method": "GET"
            }
          ]
        }
      }
    },
    {
      "status": "403",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "message": "The server understood the request, but refused to fulfill it because the access token is missing required scopes or the user is missing required roles or licenses.",
        "errors": [
          {
            "description": "Not permitted to view or change other user's preferences."
          }
        ],
        "trackingId": "4A78EB66D02E4C78B9955AA504ECFC3D_1572666592909"
      }
    }
  ]
}