Webex · Schema
CustomerGroupRequest
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| schemas | array | An array of schema URNs. Must contain 'urn:scim:schemas:core:1.0' and 'urn:scim:schemas:extension:cisco:commonidentity:1.0'. |
| displayName | string | A human readable name for the Customer Group. Must be unique per org. Maximum length: 256 characters. |
| description | string | Description of the group. |
| members | array | A list of customer organizations to be added to the group. Max 100 members per creation request. |
| managedBy | array | Administrators of customer groups. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomerGroupRequest",
"title": "CustomerGroupRequest",
"type": "object",
"required": [
"schemas",
"displayName"
],
"properties": {
"schemas": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of schema URNs. Must contain 'urn:scim:schemas:core:1.0' and 'urn:scim:schemas:extension:cisco:commonidentity:1.0'.",
"example": [
"urn:scim:schemas:core:1.0",
"urn:scim:schemas:extension:cisco:commonidentity:1.0"
]
},
"displayName": {
"type": "string",
"description": "A human readable name for the Customer Group. Must be unique per org. Maximum length: 256 characters.",
"maxLength": 256,
"example": "customerGroup09-101"
},
"description": {
"type": "string",
"description": "Description of the group.",
"maxLength": 512,
"example": "Customer Group For PA63"
},
"members": {
"type": "array",
"description": "A list of customer organizations to be added to the group. Max 100 members per creation request.",
"items": {
"$ref": "#/components/schemas/Member"
}
},
"managedBy": {
"type": "array",
"description": "Administrators of customer groups.",
"items": {
"$ref": "#/components/schemas/ManagedBy"
}
}
}
}