接口功能介绍
支持录制、截图和审核等功能场景回调参数的分页查询。
接口详情
请求方式:POST
请求路径:/live/notify-template/query-notify-template-list
请求JSON参数
参数名 | 类型 | 名称 | 是否必填 | 说明 |
---|---|---|---|---|
Page | int | 分页页码 | 否 | 取值范围:[1,~)分页的页数。不传默认为1。 |
PageSize | int | 分页大小 | 否 | 每⻚模板数值,不传默认为100。 |
响应JSON参数
参数名 | 类型 | 名称 |
---|---|---|
code | int | 状态码 |
message | string | 描述信息 |
TotalCount | int | 总记录数 |
Result | list | 模板详情信息 |
Result
参数名 | 类型 | 名称 |
---|---|---|
TemplateID | string | 模板ID |
TemplateName | string | 模板名 |
TemplateType | string | 模板类型 |
Description | string | 模板描述 |
CreateTime | string | 创建时间 |
UpdateTime | string | 修改时间 |
Params | string | 模板参数 |
Params
代码 | 类型 | 字段名称 |
---|---|---|
RecordNotifyUrl | string | 录制回调URL |
SnapshotNotifyUrl | string | 截图回调URL |
IdentifyNotifyUrl | string | 审核回调URL |
CallbackReqAuth | string | 回调鉴权开关 |
CallbackAuthKey | string | 回调鉴权密钥 |
示例
请求路径:https://cdnapi-global.ctapi.ctyun.cn/live/notify-template/query-notify-template-list
请求JSON示例
{
"Page": 1,
"PageSize": 100
}
正常响应JSON示例
{
"TotalCount": 7,
"code": 100000,
"message": "success",
"Result": [{
"Description": "",
"CreateTime": "2022-09-05 17:39:58",
"UpdateTime": "2022-10-20 15:08:56",
"TemplateName": "tes1t11",
"Params": {
"CallbackAuthKey": "dsadasdsads",
"RecordNotifyUrl": "ctyun.cn",
"IdentifyNotifyUrl": "ctyun.cn1",
"CallbackReqAuth": "on",
"SnapshotNotifyUrl": "ctyun.cn2"
},
"TemplateType": "notify",
"TemplateID": "1c731f3010c9165e0aeea7"
}, {
"Description": "wwwwwwww",
"CreateTime": "2022-10-01 14:02:29",
"UpdateTime": "2022-10-01 14:02:29",
"TemplateName": "test1001",
"Params": {
"RecordNotifyUrl": "ctyun.cn3"
},
"TemplateType": "notify",
"TemplateID": "e22a1655"
}]
}