更新时,需要将全部属性传进来,整体赋值
Authorization: Bearer ********************{
"autoAcceptCallEnabled": false,
"autoAcceptTurnOnAudioEnabled": false,
"autoAcceptTurnOnVideoEnabled": false,
"recordClarity": 0,
"videoClarity": 0,
"mediaCapabilityOptions": {
"bitRate": "5Mbit/s",
"mediaCrypto": "自动加密",
"frameRate": "自动",
"videoResolution": "自动",
"videoCodecs": "自动",
"audioCodecs": "自动",
"bandwidthShareWeight": "30%"
},
"venueOptions": {
"nameOption": {
"position": {
"x": 0,
"y": 1
},
"font": {
"size": 2
}
},
"nameOptionOpened": true
},
"voiceActivatedVenueIdentifyEnabled": true,
"auxiliaryStreamEncodingOptimizeEnabled": false
}curl --location --request PUT '/meeting/api/v1/admin/meetings/company-meeting-options' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"autoAcceptCallEnabled": false,
"autoAcceptTurnOnAudioEnabled": false,
"autoAcceptTurnOnVideoEnabled": false,
"recordClarity": 0,
"videoClarity": 0,
"mediaCapabilityOptions": {
"bitRate": "5Mbit/s",
"mediaCrypto": "自动加密",
"frameRate": "自动",
"videoResolution": "自动",
"videoCodecs": "自动",
"audioCodecs": "自动",
"bandwidthShareWeight": "30%"
},
"venueOptions": {
"nameOption": {
"position": {
"x": 0,
"y": 1
},
"font": {
"size": 2
}
},
"nameOptionOpened": true
},
"voiceActivatedVenueIdentifyEnabled": true,
"auxiliaryStreamEncodingOptimizeEnabled": false
}'{}