查询章节信息-章节打点
开发中
POST
https://saas-open.vhall.com/v3/webinars/record/get-doc-info
参数 | 类型 | 是否必选 | 含义 |
---|---|---|---|
doc_titles | json | 是 | 文档章节信息 |
参数名称 | 类型 | 含义 |
---|---|---|
document_id | string | 文档id |
hash | string | 文档hash |
created_at | string | 文档章节演示时间点 相对视频起始的开始时间点 |
page | int | 当前文档章节页数 |
title | string | 文档章节名称 |
step_total | int | 子章节数量 |
step | int | 当前文档子章节标识 |
subsection | json | 子章节信息 参控下表subsection说明 |
remake | string | 备注信息 |
参数名称 | 类型 | 含义 |
---|---|---|
document_id | string | 文档id |
hash | string | 文档hash |
created_at | string | 文档子章节演示时间点 相对视频起始的开始时间点 |
page | int | 当前文档章节页数 |
title | string | 子章节名称 |
step | int | 当前文档子章节标识 |
remake | string | 备注信息 |
"doc_titles":[
{
"hash":"daac47607f7ff35f39fdaeca78e63ca1",
"created_at":"5.13",
"title":" 引入:冒泡排序",
"step":0,
"subsection":[
{
"hash":"daac47607f7ff35f39fdaeca78e63ca1",
"created_at":"11.59",
"title":" 引入:冒泡排序",
"step":1,
"page":1,
"document_id":"0b2b1674"
},
{
"hash":"daac47607f7ff35f39fdaeca78e63ca1",
"created_at":"16.12",
"title":" 引入:冒泡排序",
"step":4,
"page":1,
"document_id":"0b2b1674"
}
],
"page":1,
"document_id":"0b2b1674"
},
{
"hash":"daac47607f7ff35f39fdaeca78e63ca1",
"created_at":"25.74",
"title":" 引入:冒泡排序的优化",
"step":0,
"subsection":[
"page":2,
"document_id":"0b2b1674"
}
]
}, "request_id":"66583f13-b924-478d-8057-82a5f3da"}
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://saas-open.vhall.com/v3/webinars/record/get-doc-info' \
--header 'platform: 15' \
--form 'record_id=""' \
--form 'app_key=""' \
--form 'sign_type=""' \
--form 'signed_at=""' \
--form 'sign=""'
响应示例响应示例
{
"code": "string",
"msg": "string",
"data": {
"doc_titles": {
"hash": "string",
"created_at": "string",
"title": "string",
"step_total": "string",
"step": 0,
"subsection": {},
"page": 0,
"document_id": 0
}
}
}
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/x-www-form-urlencoded
platform
integer
可选
默认值:
15
Body 参数multipart/form-data
record_id
string
回放ID
app_key
string
必需
默认值:
{{app_key}}
sign_type
integer
必需
默认值:
{{sign_type}}
signed_at
integer
必需
默认值:
{{signed_at}}
sign
string
计算生成的签名值
默认值:
{{sign}}
返回响应
修改于 2025-05-28 05:26:11