Webex · Schema

GroupsCollectionResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
totalResults number Total number of groups returned in the response.
startIndex number
itemsPerPage number
groups array An array of group objects.
View JSON Schema on GitHub

JSON Schema

webex-groupscollectionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupsCollectionResponse",
  "title": "GroupsCollectionResponse",
  "type": "object",
  "properties": {
    "totalResults": {
      "type": "number",
      "example": 3,
      "description": "Total number of groups returned in the response."
    },
    "startIndex": {
      "type": "number",
      "example": 1
    },
    "itemsPerPage": {
      "type": "number",
      "example": 10
    },
    "groups": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GroupResponse"
      },
      "description": "An array of group objects."
    }
  }
}