Webex · Schema

MetaDataPagedCSQ

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgid string ID of the contact center organization. This field is required for all bulk save operations.
page integer Current page number.
pageSize integer Page size for current data set.
totalPages integer Number of pages.
totalRecords integer Total number of items.
links object Map of pagination links.
actualSummariesInclusionCount integer Indicates the actual number of queues included for AI assistant-generated summaries in a given organization, including queues that are access-restricted for the user requesting the data.
View JSON Schema on GitHub

JSON Schema

webex-metadatapagedcsq-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetaDataPagedCSQ",
  "title": "MetaDataPagedCSQ",
  "type": "object",
  "properties": {
    "orgid": {
      "type": "string",
      "description": "ID of the contact center organization. This field is required for all bulk save operations.",
      "example": "af9eecc5-0472-4549-9a83-2afdae0d4ba0"
    },
    "page": {
      "type": "integer",
      "format": "int32",
      "description": "Current page number.",
      "example": 1
    },
    "pageSize": {
      "type": "integer",
      "format": "int32",
      "description": "Page size for current data set.",
      "example": 20
    },
    "totalPages": {
      "type": "integer",
      "format": "int32",
      "description": "Number of pages.",
      "example": 5
    },
    "totalRecords": {
      "type": "integer",
      "format": "int64",
      "description": "Total number of items.",
      "example": 100
    },
    "links": {
      "type": "object",
      "description": "Map of pagination links.",
      "$ref": "#/components/schemas/PaginationLinks",
      "additionalProperties": {
        "type": "string"
      }
    },
    "actualSummariesInclusionCount": {
      "type": "integer",
      "format": "int64",
      "description": "Indicates the actual number of queues included for AI assistant-generated summaries in a given organization, including queues that are access-restricted for the user requesting the data.",
      "example": 100
    }
  }
}