接口功能介绍
支持查询指定域名的录制回调、截图回调、审核回调、回调鉴权等回调信息。
接口详情
请求方式:POST
请求路径:/live/notify-template/query-notify-template-detail
请求JSON参数
参数名 | 类型 | 名称 | 是否必填 | 说明 |
---|---|---|---|---|
domain | string | 域名 | 是 | 域名 |
TemplateType | string | 模板类型 | 是 | 取值:notify |
Page | int | 分页页码 | 否 | 取值范围≥1, 分页的页数,不传默认为1 |
PageSize | int | 分页大小 | 否 | 每页模板数值,不传默认为100, |
NotifyType | string | 回调类型 | 是 | 取值,可设置多个,用英文逗号(,)分隔。 0:录制回调;1:截图回调;2:审核回调;3:回调鉴权 |
响应JSON参数
参数名 | 类型 | 名称 |
---|---|---|
code | int | 状态码 |
message | string | 描述信息 |
domain | string | 域名 |
Result | list | 模板详情信息 |
Result
参数名 | 类型 | 名称 |
---|---|---|
TemplateID | string | 模板ID |
TemplateName | string | 模板名 |
TemplateType | string | 模板类型 |
Description | string | 模板描述 |
Params | string | 模板参数 |
Params
代码 | 类型 | 字段名称 |
---|---|---|
RecordNotifyUrl | string | 录制回调URL |
SnapshotNotifyUrl | string | 截图回调URL |
IdentifyNotifyUrl | string | 审核回调URL |
CallbackReqAuth | string | 回调鉴权开关 |
示例
请求路径:https://cdnapi-global.ctapi.ctyun.cn/live/notify-template/query-notify-template-detail
请求JSON示例
{
"domain": "ctyun.cn",
"TemplateType": "notify",
"NotifyType": "0",
"Page": 1,
"PageSize": 100
}
正常响应JSON示例
{
"code": 100000,
"domain": "ctyun.cn",
"message": "success",
"Result": [{
"Description": "",
"TemplateName": "tes1t11",
"Params": {
"RecordNotifyUrl": "ctyun.cn2"
},
"TemplateType": "notify",
"TemplateID": "1c731f165e0aa7"
}]
}