- 说明
- Meetings
- 获取会议投票GET
- 删除会议投票DELETE
- 更新会议投票PUT
- 更新livestreamPATCH
- 获取livestream详细信息GET
- 创建会议POST
- 列出会议GET
- 获取会议注册人GET
- 删除会议注册人DELETE
- 执行批量注册POST
- 更新注册问题PATCH
- 列出登记问题GET
- 获取会议的令牌GET
- 更新会议调查PATCH
- 获取会议调查GET
- 删除会议调查DELETE
- 使用会议中控件PATCH
- 列出过去的会议实例GET
- 更新会议状态PUT
- 获取会议邀请GET
- 从现有会议创建会议模板POST
- 列出会议模板GET
- 更新注册人的状态PUT
- 创建会议的邀请链接POST
- 执行批量轮询创建POST
- 更新会议PATCH
- 得到一个会议GET
- 删除会议DELETE
- 更新实时流状态PATCH
- 添加会议注册人POST
- 列出会议注册人GET
- 创建会议投票POST
- 列出会议投票GET
- Billing
- SIP Phone
- Users
- Reports
- Groups
- H323 Devices
- Webinars
- 创建网络研讨会模板
- 列出网络研讨会模板
- 更新实时流状态
- 设置网络研讨会的默认品牌虚拟背景
- 上传网络研讨会的品牌虚拟背景
- 删除网络研讨会的品牌虚拟背景
- 创建网络研讨会
- 列出网络研讨会
- 执行批量注册
- 更新网络研讨会
- 获取网络研讨会
- 删除网络研讨会
- 创建网络研讨会的邀请链接
- 更新网络研讨会的品牌名称标签
- 更新注册人的状态
- 获取缺席的网络研讨会
- 获取网络研讨会的会议品牌推广
- 获取网络研讨会注册人
- 删除网络研讨会注册人
- 获取网络研讨会的令牌
- 更新实时流
- 获取实时流详细信息
- 创建网络研讨会的投票
- 列出网络研讨会的民意调查
- 获取网络研讨会跟踪源
- 更新注册问题
- 列出登记问题
- 更新网络研讨会状态
- 添加小组成员
- 小组成员名单
- 删除网络研讨会小组成员
- 更新网络研讨会调查
- 获取网络研讨会调查
- 删除网络研讨会调查
- 添加网络研讨会注册人
- 列出网络研讨会注册人
- 删除小组成员
- 获取网络研讨会投票
- 删除网络研讨会投票
- 更新网络研讨会投票
- 创建网络研讨会的品牌名称标签
- 删除网络研讨会的品牌名称标签
- 上传网络研讨会的品牌壁纸
- 删除网络研讨会的品牌壁纸
- 列出过去的网络研讨会实例
- Tracking Field
- Dashboards
- Dashboards Copy
- Cloud Recording
- TSP
- SIP Connected Audio
- Accounts
- PAC
- Information Barriers
- IM Groups
- Roles
- Archiving
更新会议调查
PATCH
/accounts/{accountId}/meetings/{meetingId}/survey
Meetings
请求参数
Path 参数
meetingId
integer
必需
accountId
string
帐户的唯一标识符。
Body 参数application/json
有关会议调查的信息。
show_in_the_browser
boolean
可选
默认值:
true
示例值:
true
custom_survey
object
可选
feedback
string
可选
<= 320 字符
示例值:
Thank you so much for taking the time to complete the survey. Your feedback really makes a difference.
numbered_questions
boolean
可选
默认值:
false
示例值:
false
questions
array [object {12}]
可选
>= 1 items<= 100 items
anonymous
boolean
可选
默认值:
false
示例值:
false
title
string
可选
<= 64 字符
示例值:
Learn something new
show_question_type
boolean
可选
默认值:
false
示例值:
false
third_party_survey
string
可选
<= 64 字符
示例值:
https://example.com
示例
{
"show_in_the_browser": true,
"custom_survey": {
"feedback": "Thank you so much for taking the time to complete the survey. Your feedback really makes a difference.",
"numbered_questions": false,
"questions": [
{
"rating_min_label": "Not likely",
"answer_required": false,
"answer_min_character": 1,
"rating_min_value": 1,
"name": "How useful was this meeting?",
"answers": [
"Extremely useful",
"Extremely useful"
],
"type": "single",
"rating_max_label": "Extremely Likely",
"answer_max_character": 200,
"rating_max_value": 4,
"show_as_dropdown": false,
"prompts": [
{
"prompt_question": "How are you?"
},
{
"prompt_question": "How are you?"
}
]
}
],
"anonymous": false,
"title": "Learn something new",
"show_question_type": false
},
"third_party_survey": "https://example.com"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'http://prod-cn.your-api-server.com/accounts//meetings//survey' \
--header 'Content-Type: application/json' \
--data-raw '{
"show_in_the_browser": true,
"custom_survey": {
"feedback": "Thank you so much for taking the time to complete the survey. Your feedback really makes a difference.",
"numbered_questions": false,
"questions": [
{
"rating_min_label": "Not likely",
"answer_required": false,
"answer_min_character": 1,
"rating_min_value": 1,
"name": "How useful was this meeting?",
"answers": [
"Extremely useful",
"Extremely useful"
],
"type": "single",
"rating_max_label": "Extremely Likely",
"answer_max_character": 200,
"rating_max_value": 4,
"show_as_dropdown": false,
"prompts": [
{
"prompt_question": "How are you?"
},
{
"prompt_question": "How are you?"
}
]
}
],
"anonymous": false,
"title": "Learn something new",
"show_question_type": false
},
"third_party_survey": "https://example.com"
}'
返回响应
🟢204** HTTP状态代码: ** '204'
会议调查已更新。
application/json
Body
object {0}
示例
{}
🟠400** HTTP状态代码: ** '400' <br>
错误的请求
** 错误代码: ** '300' <br>
无效的会议ID。<br>
** 错误代码: ** '300' <br>
无效的第三方调查: {third_party_survey}。<br>
** 错误代码: ** '3161' <br>
您的用户帐户不允许使用会议托管和日程安排功能。<br>
** 错误码: ** '3000' <br>
无法访问网络研讨会信息。<br>
** 错误码: ** '3000' <br>
会议调查已禁用。要启用
🟠404** HTTP状态代码: ** '404' <br>
未找到
** 错误代码: ** '300' <br>
会议ID不存在。<br>
** 错误代码: ** '3001' <br>
会议不存在: {meetingId}。<br>

扫码加 ZOOM 开发者 微信交流
在这里,获得 ZOOM API 文档 使用上的任何帮助,快速上手让你的研测效率得到大幅提升

