Webex · Example Payload

Webex Historical Data Related To Meetings Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Historical Data Related To Meetings 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": "Historical Data related to Meetings",
  "method": "GET",
  "path": "/v1/analytics/meetingsMetrics/aggregates",
  "summary": "Historical Data related to Meetings",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "siteUrl": "cisco.webex.com",
        "startDate": "2020-08-01",
        "endDate": "2020-08-03",
        "metrics": {
          "totalMeetings": 123,
          "totalParticipants": 123,
          "totalUniqueHosts": 123,
          "totalMeetingMinutes": 1234,
          "totalAudioMinutes": 1234,
          "totalTelephoneMinutes": 1234,
          "totalVoIPMinutes": 1234,
          "videoMeetings": 123,
          "sharingMeetings": 123,
          "recordingMeetings": 123,
          "participantsByJoinMethods": {
            "webApp": 123,
            "cloudVideoDevice": 123,
            "mobileMeetingsApp": 123
          },
          "participantsByRoles": {
            "host": 123,
            "attendee": 123
          },
          "participantsByLocation": [
            {
              "country": "United States",
              "totalParticipants": 123
            }
          ]
        }
      }
    }
  ]
}