查询白板纪要列表 - SearchMeetingFileList
描述
用户查询自己的白板纪要列表。
调试
您可以在API Explorer中调试该接口。
URI
GET /v1/usg/sss/meeting-files
请求参数
参数 | 是否必须 | 类型 | 位置 | 描述 |
|---|---|---|---|---|
offset | 否 | Integer | Query | 查询偏移量,若超过最大数量,则返回最后一页。 默认值:0 |
limit | 否 | Integer | Query | 查询数量。 默认值:10 |
searchKey | 否 | String | Query | 搜索条件。 |
X-Access-Token | 是 | String | Header | 授权令牌。获取“执行App ID鉴权”响应的accessToken。 |
X-Request-Id | 否 | String | Header | 请求requestId,用来标识一路请求,用于问题跟踪定位,建议使用UUID,若不携带,则后台自动生成。 |
Accept-Language | 否 | String | Header | 语言参数,默认为中文zh-CN,英文为en-US。 |
状态码
HTTP状态码 | 描述 |
|---|---|
200 | 操作成功。 |
400 | 参数异常。 |
401 | 未鉴权或鉴权失败。 |
403 | 权限受限。 |
500 | 服务端异常 |
响应参数
参数 | 类型 | 描述 |
|---|---|---|
count | Integer | 总数量。 |
limit | Integer | 每页显示的条目数量。 默认值:10。 |
offset | Integer | 页面起始页,从0开始。 |
data | Array of ListMeetingFileResponseDTO objects | 白板纪要列表。 |
参数 | 类型 | 描述 |
|---|---|---|
fileCode | String | 白板纪要文件码。 |
fileId | String | 文件Id。 |
fileName | String | 文件名。 |
fileSize | Long | 文件大小,单位字节。 |
pdfFileId | String | pdf文件Id。 |
pdfFileName | String | pdf文件名。 |
pdfFileSize | Long | pdf文件大小,单位字节。 |
thumbnailFileId | String | 缩略图文件Id。 |
thumbnailFileName | String | 缩略图文件名。 |
thumbnailFileSize | Long | 缩略图文件大小,单位字节。 |
topic | String | 文件主题。 |
creationTimestamp | Long | 文件创建时间戳。 |
userId | String | 用户UUID。 |
请求消息示例
GET /v1/usg/sss/meeting-files?offset=0&limit=10&searchKey= Connection: keep-alive X-Access-Token: cnrCAod6XrUexF5jUWmyxlyEcRStV8AsLwVI Content-Type: application/json Host: api.meeting.huaweicloud.com User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_191)
响应消息示例
HTTP/1.1 200
Date: Wed, 18 Dec 2019 06:20:40 GMT
Content-Type: application/json;charset=UTF-8
Content-Length: 1329
Connection: keep-alive
Pragma: No-cache
Cache-Control: no-cache
Server: api-gateway
X-Request-Id: 63facce44898efa03629afd189da7f0f
{
"count": 1,
"data": {
"creationTimestamp": 1592795500847,
"fileCode": "31531e3de7904613a2364c9e1df1fe11",
"fileId": "5",
"fileName": "20200622_111136_meeting_record.White.cwb",
"fileSize": 8044,
"pdfFileId": "7",
"pdfFileName": "20200622_111136_meeting_record.White.pdf",
"pdfFileSize": 63787,
"thumbnailFileId": "6",
"thumbnailFileName": "20200622_111136_meeting_record.White.jpg",
"thumbnailFileSize": 62816,
"topic": "20200622_111136_meeting_record.White",
"userId": "562ed8350ad5472a807ba41c22e77ae6"
},
"limit": 10,
"offset": 0
} 错误码
当您使用华为云会议服务端API时,如果遇到“MMC”或者“USG”开头的错误码,请参考华为云API错误中心。
CURL命令示例
curl -k -i -X GET -H 'X-Access-Token: cnrCAod6XrUexF5jUWmyxlyEcRStV8AsLwVI' https://api.meeting.huaweicloud.com/v1/usg/sss/meeting-files?offset=0&limit=10

