Webex · Schema
CustomerQueryGroupResponse
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| displayName | string | Human-readable name of the Customer Group. |
| members | array | Returned only when includeMembers=true. |
| memberSize | integer | Number of members in the group. |
| meta | object | |
| id | string | Unique Customer Group identifier. |
| description | string | Description of the group. |
| cisSyncSource | string | |
| usage | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomerQueryGroupResponse",
"title": "CustomerQueryGroupResponse",
"type": "object",
"properties": {
"displayName": {
"type": "string",
"description": "Human-readable name of the Customer Group."
},
"members": {
"type": "array",
"description": "Returned only when includeMembers=true.",
"items": {
"$ref": "#/components/schemas/MemberResponse"
}
},
"memberSize": {
"type": "integer",
"description": "Number of members in the group."
},
"meta": {
"$ref": "#/components/schemas/GroupMeta"
},
"id": {
"type": "string",
"description": "Unique Customer Group identifier."
},
"description": {
"type": "string",
"description": "Description of the group.",
"example": "Customer Group For PA63"
},
"cisSyncSource": {
"type": "string",
"enum": [
"SCIM",
"DIRSYNC"
]
},
"usage": {
"type": "string",
"example": "customer_group"
}
}
}