Mist Sites Stats - Calls API

API Calls to retrieve the stats of the calls (Zoom/Teams) detected by Mist

Operations 5

GET /api/v1/sites/{site_id}/stats/calls/client/{client_mac}/troubleshoot troubleshootSiteCall #
GET /api/v1/sites/{site_id}/stats/calls/count countSiteCalls #
GET /api/v1/sites/{site_id}/stats/calls/search searchSiteCalls #
GET /api/v1/sites/{site_id}/stats/calls/summary getSiteCallsSummary #
GET /api/v1/sites/{site_id}/stats/calls/troubleshoot listSiteTroubleshootCalls #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mist-sites-stats-calls-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mist-sites-stats-calls-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: tmunzer@juniper.net
    name: Thomas Munzer
  description: '> Version: **2606.1.1**

    >

    > Date: **July 10, 2026**

    <div class="notification"> NOTE:<br>Some important API changes will be introduced. Please make sure to read the <a href="https://www.juniper.net/documentation/us/en/software/mist/api/http/guides/important-api-changes">announcements</a> </div>


    ---

    ## Additional Documentation

    * [Mist Automation Guide](https://www.juniper.net/documentation/us/en/software/mist/automation-integration/index.html)

    * [Mist Location SDK](https://www.juniper.net/documentation/us/en/software/mist/location-services/topics/concept/mist-how-get-mist-sdk.html)

    * [Mist Product Updates](https://www.juniper.net/documentation/us/en/software/mist/product-updates/)


    ## Helpful Resources

    * [API Sandbox and Exercises](https://api-class.mist.com/)

    * [Postman Collection, Runners and Webhook Samples](https://www.postman.com/juniper-mist/workspace/mist-systems-s-public-workspace)

    * [Python Script Examples](https://github.com/tmunzer/mist_library)

    * [API Demo Apps](https://apps.mist-lab.fr/)

    * [Juniper Blog](https://blogs.juniper.net/)


    ## Mist Web Browser Extension:

    * Google Chrome, Microsoft Edge and other Chromium-based browser: [Chrome Web Store](https://chromewebstore.google.com/detail/mist-extension/ejhpdcljeamillfhdihkkmoakanpbplh)

    * Firefox: [Firefox Add-ons](https://addons.mozilla.org/en-US/firefox/addon/mist-extension/)


    ---'
  license:
    name: MIT
    url: https://raw.githubusercontent.com/tmunzer/Mist-OAS3.0/main/LICENSE
  title: Mist Sites Stats - Calls API
  version: 2606.1.1
  x-logo:
    altText: Juniper-MistAI
    backgroundColor: '#FFFFFF'
    url: https://www.mist.com/wp-content/uploads/logo.png
servers:
- description: Mist Global 01
  url: https://api.mist.com
- description: Mist Global 02
  url: https://api.gc1.mist.com
- description: Mist Global 03
  url: https://api.ac2.mist.com
- description: Mist Global 04
  url: https://api.gc2.mist.com
- description: Mist Global 05
  url: https://api.gc4.mist.com
- description: Mist EMEA 01
  url: https://api.eu.mist.com
- description: Mist EMEA 02
  url: https://api.gc3.mist.com
- description: Mist EMEA 03
  url: https://api.ac6.mist.com
- description: Mist EMEA 04
  url: https://api.gc6.mist.com
- description: Mist APAC 01
  url: https://api.ac5.mist.com
- description: Mist APAC 02
  url: https://api.gc5.mist.com
- description: Mist APAC 03
  url: https://api.gc7.mist.com
security:
- apiToken: []
- csrfToken: []
tags:
- description: API Calls to retrieve the stats of the calls (Zoom/Teams) detected by Mist
  name: Sites Stats - Calls
paths:
  /api/v1/sites/{site_id}/stats/calls/client/{client_mac}/troubleshoot:
    parameters:
    - $ref: '#/components/parameters/site_id'
    - $ref: '#/components/parameters/client_mac'
    get:
      description: Troubleshoot a call
      operationId: troubleshootSiteCall
      parameters:
      - description: Filter results by meeting identifier
        in: query
        name: meeting_id
        required: true
        schema:
          examples:
          - 1234567890abcdef
          type: string
      - description: Filter results by MAC address
        in: query
        name: mac
        schema:
          examples:
          - '001122334455'
          type: string
      - description: Third party app name
        in: query
        name: app
        schema:
          examples:
          - zoom
          type: string
      - $ref: '#/components/parameters/start'
      - $ref: '#/components/parameters/end'
      - $ref: '#/components/parameters/duration'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/page'
      responses:
        '200':
          $ref: '#/components/responses/CallTroubleshoot'
        '400':
          $ref: '#/components/responses/HTTP400'
        '401':
          $ref: '#/components/responses/HTTP401'
        '403':
          $ref: '#/components/responses/HTTP403'
        '404':
          $ref: '#/components/responses/HTTP404'
        '429':
          $ref: '#/components/responses/HTTP429'
      summary: troubleshootSiteCall
      tags:
      - Sites Stats - Calls
  /api/v1/sites/{site_id}/stats/calls/count:
    parameters:
    - $ref: '#/components/parameters/site_id'
    get:
      description: Count by Distinct Attributes of Calls
      operationId: countSiteCalls
      parameters:
      - description: 'Field used to group this count response. enum: `mac`'
        in: query
        name: distinct
        schema:
          $ref: '#/components/schemas/count_site_calls_distinct'
      - description: Feedback rating (e.g. "rating=1" or "rating=1,2")
        in: query
        name: rating
        schema:
          examples:
          - 5
          maximum: 5
          minimum: 1
          type: integer
      - description: Filter application statistics by application name
        in: query
        name: app
        schema:
          examples:
          - zoom
          type: string
      - $ref: '#/components/parameters/start'
      - $ref: '#/components/parameters/end'
      - $ref: '#/components/parameters/limit'
      responses:
        '200':
          $ref: '#/components/responses/Count'
        '400':
          $ref: '#/components/responses/HTTP400'
        '401':
          $ref: '#/components/responses/HTTP401'
        '403':
          $ref: '#/components/responses/HTTP403'
        '404':
          $ref: '#/components/responses/HTTP404'
        '429':
          $ref: '#/components/responses/HTTP429'
      summary: countSiteCalls
      tags:
      - Sites Stats - Calls
  /api/v1/sites/{site_id}/stats/calls/search:
    parameters:
    - $ref: '#/components/parameters/site_id'
    get:
      description: Search Calls
      operationId: searchSiteCalls
      parameters:
      - description: Filter results by MAC address
        in: query
        name: mac
        schema:
          examples:
          - '001122334455'
          type: string
      - description: Third party app name
        in: query
        name: app
        schema:
          examples:
          - zoom
          type: string
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/start'
      - $ref: '#/components/parameters/end'
      - $ref: '#/components/parameters/duration'
      - $ref: '#/components/parameters/sort'
      - $ref: '#/components/parameters/search_after'
      responses:
        '200':
          $ref: '#/components/responses/CallStatsArray'
        '400':
          $ref: '#/components/responses/HTTP400'
        '401':
          $ref: '#/components/responses/HTTP401'
        '403':
          $ref: '#/components/responses/HTTP403'
        '404':
          $ref: '#/components/responses/HTTP404'
        '429':
          $ref: '#/components/responses/HTTP429'
      summary: searchSiteCalls
      tags:
      - Sites Stats - Calls
  /api/v1/sites/{site_id}/stats/calls/summary:
    parameters:
    - $ref: '#/components/parameters/site_id'
    get:
      description: Summarized, aggregated stats for the site calls
      operationId: getSiteCallsSummary
      parameters:
      - description: Filter results by AP MAC address
        in: query
        name: ap_mac
        schema:
          examples:
          - '001122334455'
          type: string
      - description: Filter results by application name
        in: query
        name: app
        schema:
          examples:
          - zoom
          type: string
      - $ref: '#/components/parameters/start'
      - $ref: '#/components/parameters/end'
      responses:
        '200':
          $ref: '#/components/responses/CallStatsSummary'
        '400':
          $ref: '#/components/responses/HTTP400'
        '401':
          $ref: '#/components/responses/HTTP401'
        '403':
          $ref: '#/components/responses/HTTP403'
        '404':
          $ref: '#/components/responses/HTTP404'
        '429':
          $ref: '#/components/responses/HTTP429'
      summary: getSiteCallsSummary
      tags:
      - Sites Stats - Calls
  /api/v1/sites/{site_id}/stats/calls/troubleshoot:
    parameters:
    - $ref: '#/components/parameters/site_id'
    get:
      description: Summary of calls troubleshoot by site
      operationId: listSiteTroubleshootCalls
      parameters:
      - description: Filter results by AP MAC address
        in: query
        name: ap
        schema:
          examples:
          - '001122334455'
          type: string
      - description: Filter results by meeting identifier
        in: query
        name: meeting_id
        schema:
          examples:
          - 1234567890abcdef
          type: string
      - description: Filter results by MAC address
        in: query
        name: mac
        schema:
          examples:
          - '001122334455'
          type: string
      - description: Third party app name
        in: query
        name: app
        schema:
          examples:
          - zoom
          type: string
      - $ref: '#/components/parameters/start'
      - $ref: '#/components/parameters/end'
      - $ref: '#/components/parameters/duration'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/page'
      responses:
        '200':
          $ref: '#/components/responses/CallTroubleshootSummary'
        '400':
          $ref: '#/components/responses/HTTP400'
        '401':
          $ref: '#/components/responses/HTTP401'
        '403':
          $ref: '#/components/responses/HTTP403'
        '404':
          $ref: '#/components/responses/HTTP404'
        '429':
          $ref: '#/components/responses/HTTP429'
      summary: listSiteTroubleshootCalls
      tags:
      - Sites Stats - Calls
components:
  responses:
    CallStatsSummary:
      content:
        application/json:
          examples:
            Example:
              $ref: '#/components/examples/CallStatsSummaryExample'
          schema:
            $ref: '#/components/schemas/response_stats_calls_summary'
        application/vnd.api+json:
          examples:
            Example:
              $ref: '#/components/examples/CallStatsSummaryExample'
          schema:
            $ref: '#/components/schemas/response_stats_calls_summary'
      description: Example response
    CallTroubleshoot:
      content:
        application/json:
          examples:
            Example:
              $ref: '#/components/examples/CallTroubleshootExample'
          schema:
            $ref: '#/components/schemas/call_troubleshoot'
        application/vnd.api+json:
          examples:
            Example:
              $ref: '#/components/examples/CallTroubleshootExample'
          schema:
            $ref: '#/components/schemas/call_troubleshoot'
      description: Example response
    HTTP401:
      content:
        application/json:
          examples:
            Example:
              $ref: '#/components/examples/HTTP401Example'
          schema:
            $ref: '#/components/schemas/response_http401'
        application/vnd.api+json:
          examples:
            Example:
              $ref: '#/components/examples/HTTP401Example'
          schema:
            $ref: '#/components/schemas/response_http401'
      description: Unauthorized
    HTTP400:
      content:
        application/json:
          examples:
            Example:
              $ref: '#/components/examples/HTTP400Example'
          schema:
            $ref: '#/components/schemas/response_http400'
        application/vnd.api+json:
          examples:
            Example:
              $ref: '#/components/examples/HTTP400Example'
          schema:
            $ref: '#/components/schemas/response_http400'
      description: Bad Syntax
    CallStatsArray:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/response_stats_calls'
        application/vnd.api+json:
          schema:
            $ref: '#/components/schemas/response_stats_calls'
      description: Example response
    HTTP404:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/response_http404'
        application/vnd.api+json:
          schema:
            $ref: '#/components/schemas/response_http404'
      description: Not found. The API endpoint doesn’t exist or resource doesn’ t exist
    HTTP403:
      content:
        application/json:
          examples:
            Example:
              $ref: '#/components/examples/HTTP403Example'
          schema:
            $ref: '#/components/schemas/response_http403'
        application/vnd.api+json:
          examples:
            Example:
              $ref: '#/components/examples/HTTP403Example'
          schema:
            $ref: '#/components/schemas/response_http403'
      description: Permission Denied
    Count:
      content:
        application/json:
          examples:
            Example:
              $ref: '#/components/examples/CountExample'
          schema:
            $ref: '#/components/schemas/response_count'
        application/vnd.api+json:
          examples:
            Example:
              $ref: '#/components/examples/CountExample'
          schema:
            $ref: '#/components/schemas/response_count'
      description: Result of Count
    HTTP429:
      content:
        application/json:
          examples:
            Example:
              $ref: '#/components/examples/HTTP429Example'
          schema:
            $ref: '#/components/schemas/response_http429'
        application/vnd.api+json:
          examples:
            Example:
              $ref: '#/components/examples/HTTP429Example'
          schema:
            $ref: '#/components/schemas/response_http429'
      description: Too Many Request. The API Token used for the request reached the 5000 API Calls per hour threshold
    CallTroubleshootSummary:
      content:
        application/json:
          examples:
            Example:
              $ref: '#/components/examples/CallTroubleshootSummaryExample'
          schema:
            $ref: '#/components/schemas/response_call_troubleshoot_summary'
        application/vnd.api+json:
          examples:
            Example:
              $ref: '#/components/examples/CallTroubleshootSummaryExample'
          schema:
            $ref: '#/components/schemas/response_call_troubleshoot_summary'
      description: Example response
  schemas:
    stats_call:
      additionalProperties: false
      description: Statistics record for a detected collaboration call, such as Zoom or Teams
      properties:
        app:
          description: Third-party collaboration application that reported the call statistics
          type: string
        audio_quality:
          description: Quality score reported for the call audio stream
          type: integer
        end_time:
          description: Time when the call ended, in epoch seconds
          type: integer
        mac:
          description: Client MAC address associated with the call statistics record
          type: string
        meeting_id:
          description: Collaboration meeting identifier reported for the call
          type: string
        org_id:
          $ref: '#/components/schemas/org_id'
          description: Owning organization identifier for the call statistics record
        rating:
          description: Overall call rating reported by the collaboration application, when available
          type: integer
        screen_share_quality:
          description: Quality score reported for screen sharing during the call
          type: integer
        site_id:
          $ref: '#/components/schemas/site_id'
          description: Associated site identifier for the call statistics record
        start_time:
          description: Time when the call started, in epoch seconds
          type: integer
        video_quality:
          description: Quality score reported for the call video stream
          type: integer
      type: object
    response_http403:
      additionalProperties: false
      description: Standard HTTP 403 permission error response
      properties:
        detail:
          description: Human-readable explanation of the permission error
          examples:
          - You do not have permission to perform this action.
          type: string
      type: object
    org_id:
      description: Unique identifier of a Mist organization
      examples:
      - a97c1b22-a4e9-411e-9bfd-d8695a0f9e61
      format: uuid
      readOnly: true
      type: string
    response_http400:
      additionalProperties: false
      description: Standard HTTP 400 bad request error response
      properties:
        detail:
          description: Human-readable explanation of the bad request error
          examples:
          - 'JSON parse error - Expecting value: line 5 column 8 (char 56)'
          type: string
      type: object
    response_call_troubleshoot_summary:
      additionalProperties: false
      description: Site call troubleshooting summary response
      properties:
        mac:
          description: Client MAC address for the summarized call troubleshooting result
          examples:
          - 983a78ea4a44
          type: string
        meeting_id:
          description: Meeting identifier for the summarized call troubleshooting result
          examples:
          - b784d744-9a7c-4fad-9af0-f78858a319b1
          format: uuid
          type: string
        results:
          $ref: '#/components/schemas/call_troubleshoot_summaries'
          description: Summary troubleshooting results returned for matching calls
      type: object
    response_count:
      additionalProperties: false
      description: Distinct count response for time-bounded search results
      properties:
        distinct:
          description: Field used to group the count results
          type: string
        end:
          description: Search window end timestamp for the count request, in epoch seconds
          type: integer
        limit:
          description: Maximum number of distinct count results requested
          type: integer
        results:
          $ref: '#/components/schemas/count_results'
          description: Count results grouped by the distinct field
        start:
          description: Search window start timestamp for the count request, in epoch seconds
          type: integer
        total:
          description: Number of distinct result buckets returned
          type: integer
      required:
      - distinct
      - end
      - limit
      - results
      - start
      - total
      type: object
    call_troubleshoot_summaries:
      description: List of call troubleshooting summary records
      items:
        $ref: '#/components/schemas/call_troubleshoot_summary'
      type: array
    call_troubleshoot_data:
      additionalProperties: false
      description: Per-media call troubleshooting metric values
      properties:
        ap_num_clients:
          description: Troubleshooting metric value for AP client count
          examples:
          - -0.6565111
          type: number
        ap_rtt:
          description: Troubleshooting metric value for AP round-trip time
          examples:
          - 0.16559607
          type: number
        client_cpu:
          description: Troubleshooting metric value for client CPU load
          examples:
          - 3.7028809
          type: number
        client_n_streams:
          description: Troubleshooting metric value for the number of client spatial streams
          examples:
          - 0.15803306
          type: number
        client_radio_band:
          description: Troubleshooting metric value for the client radio band
          examples:
          - 0.5576923
          type: number
        client_rssi:
          description: Troubleshooting metric value for client RSSI
          examples:
          - -1.0839354
          type: number
        client_rx_bytes:
          description: Troubleshooting metric value for bytes received by the client
          examples:
          - 2.2622051
          type: number
        client_rx_rates:
          description: Troubleshooting metric value for client receive data rates
          examples:
          - 0.62357205
          type: number
        client_rx_retries:
          description: Troubleshooting metric value for client receive retries
          examples:
          - 0.26726437
          type: number
        client_tx_bytes:
          description: Troubleshooting metric value for bytes transmitted by the client
          examples:
          - 0.15803306
          type: number
        client_tx_rates:
          description: Troubleshooting metric value for client transmit data rates
          examples:
          - 0.62357205
          type: number
        client_tx_retries:
          description: Troubleshooting metric value for client transmit retries
          examples:
          - 0.77553505
          type: number
        client_vpn_distance:
          description: Troubleshooting metric value for client VPN distance
          examples:
          - 1.6474955
          type: number
        client_wifi_version:
          description: Troubleshooting metric value for the client Wi-Fi version
          examples:
          - 0.18267937
          type: number
        expected:
          description: Model baseline value expected for this media direction
          examples:
          - 30.941595
          type: number
        radio_bandwidth:
          description: Troubleshooting metric value for radio channel bandwidth
          examples:
          - -0.06538621
          type: number
        radio_channel:
          description: Troubleshooting metric value for the radio channel
          examples:
          - -0.73391086
          type: number
        radio_tx_power:
          description: Troubleshooting metric value for radio transmit power
          examples:
          - 0.10027129
          type: number
        radio_util:
          description: Troubleshooting metric value for radio utilization
          examples:
          - 12.770318
          type: number
        radio_util_interference:
          description: Troubleshooting metric value for radio interference utilization
          examples:
          - -3.079999
          type: number
        site_num_clients:
          description: Troubleshooting metric value for the number of clients at the site
          examples:
          - 0.017364305
          type: number
        wan_avg_download_mbps:
          description: Troubleshooting metric value for average WAN download throughput
          examples:
          - 1.4803165
          type: number
        wan_avg_upload_mbps:
          description: Troubleshooting metric value for average WAN upload throughput
          examples:
          - -0.038184267
          type: number
        wan_jitter:
          description: Troubleshooting metric value for WAN jitter
          examples:
          - 5.9680853
          type: number
        wan_max_download_mbps:
          description: Troubleshooting metric value for maximum WAN download throughput
          examples:
          - 1.4803165
          type: number
        wan_max_upload_mbps:
          description: Troubleshooting metric value for maximum WAN upload throughput
          examples:
          - -0.038184267
          type: number
        wan_rtt:
          description: Troubleshooting metric value for WAN round-trip time
          examples:
          - 46.77899
          type: number
      type: object
    count_results:
      description: List of count result rows
      items:
        $ref: '#/components/schemas/count_result'
      type: array
      uniqueItems: true
    timestamp:
      description: Epoch timestamp, in seconds
      format: double
      readOnly: true
      type: number
    count_result:
      additionalProperties:
        type: string
      description: Count result row with the matching distinct field values
      properties:
        count:
          description: Number of matching items for the distinct value or values in this result
          type: integer
      required:
      - count
      type: object
    call_troubleshoot_summary:
      additionalProperties: false
      description: Summary row for call troubleshooting metrics
      properties:
        ap_num_clients:
          description: Summary troubleshooting metric value for AP client count
          examples:
          - -0.08802365511655807
          type: number
        ap_rtt:
          description: Summary troubleshooting metric value for AP round-trip time
          examples:
          - 0.09924473613500595
          type: number
        audio_in:
          $ref: '#/components/schemas/call_troubleshoot_summary_data'
          description: Troubleshooting metrics for the inbound audio stream
        audio_out:
          $ref: '#/components/schemas/call_troubleshoot_summary_data'
          description: Troubleshooting metrics for the outbound audio stream
        client_cpu:
          description: Summary troubleshooting metric value for client CPU load
          examples:
          - 0.00834270566701889
          type: number
        client_n_streams:
          description: Summary troubleshooting metric value for the number of client spatial streams
          examples:
          - 0.00734270566701889
          type: number
        client_radio_band:
          description: Summary troubleshooting metric value for the client radio band
          examples:
          - 0.5841414928436279
          type: number
        client_rssi:
          description: Summary troubleshooting metric value for client RSSI
          examples:
          - 0.7594696879386902
          type: number
        client_rx_bytes:
          description: Summary troubleshooting metric value for bytes received by the client
          examples:
          - 2.365511655807e-05
          type: number
        client_rx_rates:
          description: Summary troubleshooting metric value for client receive data rates
          examples:
          - 0.02441493794322014
          type: number
        client_rx_retries:
          description: Summary troubleshooting metric value for client receive retries
          examples:
          - -0.14325742423534393
          type: number
        client_tx_bytes:
          description: Summary troubleshooting metric value for bytes transmitted by the client
          examples:
          - 0.00102365511655807
          type: number
        client_tx_rates:
          description: Summary troubleshooting metric value for client transmit data rates
          examples:
          - 0.22236637771129608
          type: number
        client_tx_retries:
          description: Summary troubleshooting metric value for client transmit retries
          examples:
          - 0.3308201730251312
          type: number
        client_vpn_distance:
          description: Summary troubleshooting metric value for client VPN distance
          examples:
          - -0.0001660545531194657
          type: number
        client_wifi_version:
          description: Summary troubleshooting metric value for the client Wi-Fi version
          examples:
          - 7.0566701889e-07
          type: number
        expected:
          description: Model baseline value expected for this call sample
          examples:
          - -2.8630001056670187
          type: number
        radio_ap_change:
          description: Summary troubleshooting metric value for AP changes on the radio path
          examples:
          - 0.01850946433842182
          type: number
        radio_bandwidth:
          description: Summary troubleshooting metric value for radio channel bandwidth
          examples:
          - -0.021175479516386986
          type: number
        radio_channel:
          description: Summary troubleshooting metric value for the radio channel
          examples:
          - 0.11686426401138306
          type: number
        radio_rx_failed:
          description: Summary troubleshooting metric value for failed radio receive attempts
          examples:
          - 1.1782013177871704
          type: number
        radio_tx_power:
          description: Summary troubleshooting metric value for radio transmit power
          examples:
          - 0.121039018034935
          type: number
        radio_util:
          description: Summary troubleshooting metric value for radio utilization
          examples:
          - 0.2452986091375351
          type: number
        radio_util_interference:
          description: Summary troubleshooting metric value for radio interference utilization
          examples:
          - 3.4367904663085938
          type: number
        site_num_clients:
          description: Summary troubleshooting metric value for the number of clients at the site
          examples:
          - 0.055026158690452576
          type: number
        site_wan_avg_download_mbps:
          description: Summary troubleshooting metric value for site WAN average download throughput
          examples:
          - 3.0566701889e-07
          type: number
        site_wan_avg_upload_mbps:
          description: Summary troubleshooting metric value for site WAN average upload throughput
          examples:
          - 5.566701889e-08
          type: number
        site_wan_download_mbps:
          description: Summary troubleshooting metric value for site WAN download throughput
          examples:
          - 8.0566701889e-07
          type: number
        site_wan_jitter:
          description: Summary troubleshooting metric value for site WAN jitter
          examples:
          - 0.7875519659784105
          type: number
        site_wan_rtt:
          description: Summary troubleshooting metric value for site WAN round-trip time
          examples:
          - 15.094849904378256
          type: number
        site_wan_upload_mbps:
          description: Summary troubleshooting metric value for site WAN upload throughput
          examples:
          - 2.0566701889e-07
          type: number
        timestamp:
          $ref: '#/components/schemas/timestamp'
          description: Time when this call troubleshooting sample was recorded
        video_in:
          $ref: '#/components/schemas/call_troubleshoot_summary_data'
          description: Troubleshooting metrics for the inbound video stream
        video_out:
          $ref: '#/components/schemas/call_troubleshoot_summary_data'
          description: Troubleshooting metrics for the outbound video stream
      type: object
    troubleshoot_call_item:
      additionalProperties: false
      description: Per-sample call troubleshooting metrics
      properties:
        ap_num_clients:
          description: Troubleshooting metric value for AP client count
          examples:
          - -0.08802365511655807
          type: number
        ap_rtt:
          description: Troubleshooting metric value for AP round-trip time
          examples:
          - 0.09924473613500595
          type: number
        audio_in:
          $ref: '#/components/schemas/call_troubleshoot_data'
          description: Troubleshooting metrics for the inbound audio stream
        audio_out:
          $ref: '#/components/schemas/call_troubleshoot_data'
          description: Troubleshooting metrics for the outbound audio stream
        client_cpu:
          description: Troubleshooting metric value for client CPU load
          examples:
          - 0.00834270566701889
          type: number
        client_n_streams:
          description: Troubleshooting metric value for the number of client spatial streams
          examples:
          - 0.00734270566701889
          type: number
        client_radio_band:
          description: Troubleshooting metric value for the client radio band
          examples:
          - 0.5841414928436279
          type: number
        client_rssi:
          description: Troubleshooting metric value for client RSSI
          examples:
          - 0.7594696879386902
          type: number
        client_rx_bytes:
          description: Troubleshooting metric value for bytes received by the client
          examples:
          - 2.365511655807e-05
          type: number
        client_rx_rates:
          description: Troubleshooting metric value for client receive data rates
          examples:
          - 0.02441493794322014
          type: number
        client_rx_retries:
          description: Troubleshooting metric value for client receive retries
     

# --- truncated at 32 KB (61 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mist/refs/heads/main/openapi/mist-sites-stats-calls-api-openapi.yml