Webex · Schema
GetCustomerMSTeamsSettingsObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| level | string | Level at which the `settingName` has been set. * `GLOBAL` - `settingName` configured at the `GLOBAL` `level`. * `ORGANIZATION` - `settingName` configured at the `ORGANIZATION` `level`. |
| orgId | string | Unique identifier for the organization. |
| settings | array | Array of `SettingsObject`. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetCustomerMSTeamsSettingsObject",
"title": "GetCustomerMSTeamsSettingsObject",
"type": "object",
"required": [
"level",
"orgId",
"settings"
],
"properties": {
"level": {
"type": "string",
"enum": [
"GLOBAL",
"ORGANIZATION"
],
"description": "Level at which the `settingName` has been set.\n * `GLOBAL` - `settingName` configured at the `GLOBAL` `level`.\n * `ORGANIZATION` - `settingName` configured at the `ORGANIZATION` `level`.\n"
},
"orgId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi84NzU2ZjkwZS1iZDg4LTRhOTQtOGZiZC0wMzM2NzhmMDU5ZjM",
"description": "Unique identifier for the organization."
},
"settings": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SettingsObject"
},
"description": "Array of `SettingsObject`."
}
}
}