接口功能说明
支持录制、截图和审核等功能场景的回调模板的绑定或者解绑。
使用说明
(1)需先新增回调模板,再调用此接口进行模板的绑定
(2)可通过”查询回调模板列表“接口查询已新增的媒体处理模板信息
(3)可通过“查询域名回调配置”接口查询域名已绑定的模板配置,以免重复绑定
接口详情
请求方式:POST
请求路径:/live/notify-template/bind-notify-template
请求JSON参数
代码 | 类型 | 字段名称 | 是否必选 | 说明 |
---|---|---|---|---|
Option | int | 操作 | 是 | 取值:1:绑定, 0:解绑 |
domain | string | 域名 | 是 | 一次只能提交1个域名 |
media:id | string | 模板ID | 是 | 已创建的回调模板ID,多个模板ID使用英文逗号分隔 |
响应JSON参数
代码 | 类型 | 字段名称 |
---|---|---|
code | int | 状态码 |
message | string | 描述信息 |
示例
请求路径:https://cdnapi-global.ctapi.ctyun.cn/live/notify-template/bind-notify-template
请求JSON示例
{
"Option":0,
"domain":"ctyun.cn",
"media":[{"id":"65shhklue975easaa457"}]
}
正常返回JSON示例
{
"code": 100000,
"message": "success"
}