Webex · Example Payload

Webex List User Session Type Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex List User Session Type 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 User Session Type",
  "method": "GET",
  "path": "/admin/meeting/userconfig/sessionTypes",
  "summary": "List User Session Type",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json;charset=UTF-8",
      "example": {
        "items": [
          {
            "personId": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8yNWJiZjgzMS01YmU5LTRjMjUtYjRiMC05YjU5MmM4YTA4NmI",
            "email": "john.andersen@example.com",
            "siteUrl": "example.webex.com",
            "sessionTypes": [
              {
                "id": "3",
                "shortName": "PRO",
                "name": "Pro meeting",
                "type": "meeting"
              },
              {
                "id": "9",
                "shortName": "ONS",
                "name": "Online Event",
                "type": "EventCenter"
              }
            ]
          }
        ]
      }
    }
  ]
}