Webex Update Meeting Common Settings Configuration Example is an example object payload from Webex, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
{
"operationId": "Update Meeting Common Settings Configuration",
"method": "PATCH",
"path": "/admin/meeting/config/commonSettings",
"summary": "Update Meeting Common Settings Configuration",
"requestExamples": [
{
"contentType": "application/json",
"example": {
"defaultSchedulerOptions": {
"entryAndExitTone": "AnnounceName"
},
"scheduleMeetingOptions": {
"emailReminders": false
},
"securityOptions": {
"joinBeforeHost": true,
"audioBeforeHost": false,
"firstAttendeeAsPresenter": false,
"requireStrongPassword": true,
"passwordCriteria": {
"mixedCase": false,
"disallowValues": [
"password",
"passwd",
"pwd"
]
}
}
}
}
],
"responseExamples": [
{
"status": "200",
"contentType": "application/json;charset=UTF-8",
"example": {
"siteOptions": {
"allowCustomPersonalRoomURL": true
},
"telephonyConfig": {
"allowCallIn": true,
"allowCallBack": true,
"allowOtherTeleconf": true,
"allowTollFreeCallin": true,
"allowInternationalCallin": true,
"allowInternationalCallback": true,
"VoIP": true
},
"defaultSchedulerOptions": {
"entryAndExitTone": "Beep",
"joinTeleconfNotPress1": true,
"telephonySupport": "WebexTeleconferencing",
"tollFree": true,
"VoIP": false
},
"scheduleMeetingOptions": {
"emailReminders": true
},
"securityOptions": {
"joinBeforeHost": true,
"audioBeforeHost": true,
"firstAttendeeAsPresenter": true,
"unlistAllMeetings": false,
"requireLoginBeforeAccess": false,
"allowMobileScreenCapture": true,
"requireStrongPassword": true,
"passwordCriteria": {
"mixedCase": true,
"minLength": 8,
"minNumeric": 2,
"minAlpha": 4,
"minSpecial": 1,
"disallowDynamicWebText": true,
"disallowList": true,
"disallowValues": [
"password",
"Admin@123",
"passwd",
"pass"
]
}
}
}
},
{
"status": "400",
"contentType": "application/json;charset=UTF-8",
"example": {
"message": "The request could not be understood by the server due to malformed syntax. See 'errors' for more details.",
"errors": [
{
"description": "Repeated items are not allowed in disallowValues."
}
],
"trackingId": "026C56558A1540089DB8CA7091F9B547_1663746877258"
}
}
]
}