Webex · Schema
CustomerGroupPostPatchResponse
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| schemas | array | An array of schema URNs. |
| id | string | Unique Customer Group Id. |
| meta | object | |
| displayName | string | A human readable name for the Customer Group. |
| description | string | Description of the group. |
| cisSyncSource | string | Sync Source. |
| memberSize | integer | Number of members in the group. |
| members | array | A list of members of the Group. |
| managedBy | array | Administrators of customer groups (email is not returned). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomerGroupPostPatchResponse",
"title": "CustomerGroupPostPatchResponse",
"type": "object",
"required": [
"schemas",
"id",
"meta",
"displayName",
"memberSize"
],
"properties": {
"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"
]
},
"id": {
"type": "string",
"description": "Unique Customer Group Id.",
"example": "230898d8-f528-432f-93db-d138fa7fb20c"
},
"meta": {
"$ref": "#/components/schemas/GroupMeta"
},
"displayName": {
"type": "string",
"description": "A human readable name for the Customer Group.",
"example": "customerGroup09-101"
},
"description": {
"type": "string",
"description": "Description of the group.",
"example": "Customer Group For PA63"
},
"cisSyncSource": {
"type": "string",
"description": "Sync Source.",
"enum": [
"SCIM",
"DIRSYNC"
],
"example": "SCIM"
},
"memberSize": {
"type": "integer",
"description": "Number of members in the group.",
"example": 1
},
"members": {
"type": "array",
"description": "A list of members of the Group.",
"items": {
"$ref": "#/components/schemas/MemberResponse"
}
},
"managedBy": {
"type": "array",
"description": "Administrators of customer groups (email is not returned).",
"items": {
"$ref": "#/components/schemas/ManagedByResponse"
}
}
}
}