/api/channel/output/edit
编辑通道的输出。
需要通道编辑权限
接口原型
协议 |
HTTP/HTTPS POST |
URL |
ip[:port]/api/channel/output/edit |
数据格式 |
请求消息:Content-Type: application/json 响应消息:Content-Type: application/json |
请求Cookies
名称 |
描述 |
mwcloud-sid |
用于标识当前登录的字符串 |
mwcloud-uid |
当前登录用户名 |
Request Body
参数 |
描述 |
id |
通道id |
add |
想要添加的输出节点列表 |
del |
想要删除的输出节点列表 |
请求示例
POST /api/channel/output/edit HTTP/1.1
Accept: application/json, text/plain, */*
Content-Type: application/json;charset=utf-8
Content-Length: xx
Cookie: mwcloud-sid=OCXWUMGEYPGIAWWOETYXPNMVHDZIAZJP; mwcloud-uid=Admin;
{
"id":1,
"add": [11001],
"del": [11002]
}
响应参数
参数 |
描述 |
Content-Type |
取值为:'application/json; charset=UTF-8' |
Response Body
响应示例
HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
content-length: xx
{
"result": 0
}