保存章节-章节打点
开发中
POST
https://saas-open.vhall.com/v3/webinars/record/save-doc-info
doc_titles 参数
参数名称 | 类型 | 含义 |
---|---|---|
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 | 备注信息 |
[
{
// 文档id
"document_id": "e874e2db",
// 文档hash
"hash": "8fc89be4e6bd4e0bf7fd0f1aacf9d807",
//对应章节的时间点
"created_at": 2,
"page": 1,
"step": 0,
"step_total": 2,
"title": "第一章节",
"remark": "",
// 子章节列表
"subsection": [
{
"document_id": "e874e2db",
"hash": "8fc89be4e6bd4e0bf7fd0f1aacf9d807",
"page": 1,
"step": 1,
"title": "第一章节第1子章节",
"remark": "",
// 对应章节的时间点
"created_at": 4,
},
{
"id": 21,
"document_id": "e874e2db",
"hash": "8fc89be4e6bd4e0bf7fd0f1aacf9d807",
"page": 1,
"step": 2,
"title": "第一章节第2子章节",
"remark": "",
// 对应章节的时间点
"created_at": 5,
}
]
}
]
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://saas-open.vhall.com/v3/webinars/record/save-doc-info' \
--header 'token;' \
--header 'platform: 15' \
--form 'record_id=""' \
--form 'doc_titles=""' \
--form 'type=""' \
--form 'app_key=""' \
--form 'sign_type=""' \
--form 'signed_at=""' \
--form 'sign=""'
响应示例响应示例
{
"code": "string",
"msg": "string",
"data": {}
}
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/x-www-form-urlencoded
token
string
必需
platform
integer
可选
默认值:
15
Body 参数multipart/form-data
record_id
string
回放ID
doc_titles
string
必需
type
string
必需
app_key
string
必需
默认值:
{{app_key}}
sign_type
integer
必需
默认值:
{{sign_type}}
signed_at
integer
必需
默认值:
{{signed_at}}
sign
string
计算生成的签名值
默认值:
{{sign}}
返回响应
修改于 2025-05-28 05:26:11