获取指定会议的投票列表。
请求方式: POST(HTTPS)
请求地址: https://qyapi.weixin.qq.com/cgi-bin/meeting/poll/get_poll_list?access_token=ACCESS_TOKEN
请求包体
{
"operator_userid":"OPENID",
"instance_id":1,
"meetingid": "ID"
}
参数说明:
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 调用接口凭证。获取方法查看“获取access_token” |
operator_userid | 是 | string | 操作者openid |
instance_id | 是 | int | 操作者入会设备对应的id |
meetingid | 是 | string | 会议ID |
返回结果
{
"errcode": 0,
"errmsg": "ok",
"polls_theme_info": [{
"poll_theme_id": "theme1",
"polls_info": [{
"poll_id": "pollid",
"poll_topic": "topic1",
"status": 1,
"is_shared": 1,
"is_anony": 0
}]
}]
}
参数说明:
参数 | 类型 | 说明 |
---|---|---|
errcode | int32 | 返回码 |
errmsg | string | 对返回码的文本描述内容 |
polls_theme_info | object[] | 投票主题信息列表,详见PollThemeInfo |
PollThemeInfo说明
参数 | 类型 | 说明 |
---|---|---|
poll_theme_id | string | 投票主题 ID |
polls_info | object[] | 投票信息列表,详见PollInfo |
PollInfo说明
参数 | 类型 | 说明 |
---|---|---|
poll_id | string | 投票 ID。 |
poll_topic | string | 投票标题。 |
status | int32 | 投票状态。 0:未开始 1:投票中 2:已结束 |
is_shared | int32 | 共享状态。 0:未共享 1:已共享 |
is_anony | int32 | 是否匿名。 0:实名 1:匿名 |