Webex · Schema

CustomerGroupsQueryResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
totalResults integer Total number of Customer Groups that match the query.
itemsPerPage integer Number of Customer Groups returned in the current response.
startIndex integer 1-based index of the first result returned.
schemas array An array of schema URNs.
Resources array List of Customer Groups.
View JSON Schema on GitHub

JSON Schema

webex-customergroupsqueryresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerGroupsQueryResponse",
  "title": "CustomerGroupsQueryResponse",
  "type": "object",
  "properties": {
    "totalResults": {
      "type": "integer",
      "description": "Total number of Customer Groups that match the query.",
      "example": 9
    },
    "itemsPerPage": {
      "type": "integer",
      "description": "Number of Customer Groups returned in the current response.",
      "example": 2
    },
    "startIndex": {
      "type": "integer",
      "description": "1-based index of the first result returned.",
      "example": 2
    },
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "An array of schema URNs.",
      "example": [
        "urn:scim:schemas:core:1.0",
        "urn:scim:schemas:extension:cisco:commonidentity:1.0"
      ]
    },
    "Resources": {
      "type": "array",
      "description": "List of Customer Groups.",
      "items": {
        "$ref": "#/components/schemas/CustomerQueryGroupResponse"
      }
    }
  }
}