文档中心 > API类目 > 法务服务API

alibaba.lvms.brand.addmonitorchannel (新增侵权渠道)

新增侵权渠道

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
rpc_context Json 可选 {} RpcContext
monitor_channel_d_t_o BrandChannelDto 可选 monitorChannelDTO
  • └ name
  • String
  • 可选
  • xxxxx
  • 监测渠道名称
  • └ type
  • String
  • 可选
  • xxxxx
  • 监测渠道类型
  • └ website_link_list
  • String []
  • 可选
  • Top,Pub
  • 监测渠道—网页地址
  • └ complaint_mailbox_list
  • String []
  • 可选
  • Top,Pub
  • 监测渠道—投诉邮箱
  • └ remark
  • String
  • 可选
  • xxxxx
  • 监测渠道备注

响应参数

名称 类型 示例值 描述
lvms_result_d_t_o LvmsResultDto lvmsResultDTO
  • └ data
  • String
  • xxxxx
  • 响应结果
  • └ count
  • Number
  • 10
  • 返回数量
  • └ success
  • Boolean
  • false
  • 是否成功
  • └ code
  • String
  • xxxxx
  • 操作编码
  • └ message
  • String
  • xxxxx
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLvmsBrandAddmonitorchannelRequest req = new AlibabaLvmsBrandAddmonitorchannelRequest();
req.setRpcContextString("{}");
AlibabaLvmsBrandAddmonitorchannelRequest.BrandChannelDto obj1 = new AlibabaLvmsBrandAddmonitorchannelRequest.BrandChannelDto();
obj1.setName("xxxxx");
obj1.setType("xxxxx");
obj1.setWebsiteLinkList("Top,Pub");
obj1.setComplaintMailboxList("Top,Pub");
obj1.setRemark("xxxxx");
req.setMonitorChannelDTO(obj1);
AlibabaLvmsBrandAddmonitorchannelResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_lvms_brand_addmonitorchannel_response>
    <lvms_result_d_t_o>
        <data>xxxxx</data>
        <count>10</count>
        <success>false</success>
        <code>xxxxx</code>
        <message>xxxxx</message>
    </lvms_result_d_t_o>
</alibaba_lvms_brand_addmonitorchannel_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部