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

alibaba.lvms.copyright.synctortclue (同步侵权线索)

同步侵权线索

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
rpc_context Json 可选 {} RpcContext
push_tort_clue_d_t_o PushTortClueDto 可选 pushTortClueDTO
  • └ serial_code
  • String
  • 可选
  • xxxxx
  • 关联委托编号
  • └ policy_id
  • String
  • 可选
  • xxxxx
  • 策略任务Id
  • └ source
  • String
  • 可选
  • xxxxx
  • 来源 业务反馈/供应商反馈
  • └ content_url
  • String
  • 可选
  • xxxxx
  • 侵权内容链接
  • └ content_title
  • String
  • 可选
  • xxxxx
  • 侵权内容标题
  • └ length
  • String
  • 可选
  • xxxxx
  • 时长
  • └ monitor_time
  • Date
  • 可选
  • 2000-01-01 00:00:00
  • 监测时间
  • └ publish_account_id
  • String
  • 可选
  • xxxxx
  • 发布人Id
  • └ publish_account_name
  • String
  • 可选
  • xxxxx
  • 发布人名称
  • └ publish_time
  • Date
  • 可选
  • 2000-01-01 00:00:00
  • 发布时间
  • └ whole_works
  • Boolean
  • 可选
  • false
  • 是否整个作品
  • └ comment_count
  • Number
  • 可选
  • 10
  • 评论次数
  • └ download_count
  • Number
  • 可选
  • 10
  • 下载次数
  • └ share_count
  • Number
  • 可选
  • 10
  • 分享次数
  • └ broadcast_count
  • Number
  • 可选
  • 10
  • 点播数
  • └ offline_status
  • String
  • 可选
  • xxxxx
  • 下线状态
  • └ external_works_id
  • String
  • 可选
  • xxxxx
  • 外部平台作品Id
  • └ platform_code
  • String
  • 可选
  • xxxxx
  • 平台code
  • └ tort
  • Boolean
  • 可选
  • false
  • 是否侵权
  • └ follow_strategy_processing_time
  • Boolean
  • 可选
  • false
  • 是否遵循策略处理时长
  • └ remark
  • String
  • 可选
  • xxxxx
  • 备注
  • └ process_status
  • String
  • 可选
  • xxxxx
  • 维权状态 待确认、待审核、已申领、维权中、已结案、已撤回
  • └ external_clue_id
  • String
  • 可选
  • xxxxx
  • 侵权线索Id
  • └ invoke_timestamp
  • Date
  • 可选
  • 2000-01-01 00:00:00
  • 调用时间戳
  • └ tech
  • String
  • 可选
  • xxxxx
  • 端口
  • attachments
  • FileDto []
  • 可选
  • 侵权内容附件
  • └ url
  • String
  • 可选
  • xxxxx
  • 附件url
  • └ file_name
  • String
  • 可选
  • xxxxx
  • 附件名称
  • └ file_id
  • String
  • 可选
  • xxxxx
  • 附件Id(唯一标识)
  • └ valid_start_date
  • Date
  • 可选
  • 2000-01-01 00:00:00
  • 起始时间
  • └ valid_end_date
  • Date
  • 可选
  • 2000-01-01 00:00:00
  • 结束时间

响应参数

名称 类型 示例值 描述
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);
AlibabaLvmsCopyrightSynctortclueRequest req = new AlibabaLvmsCopyrightSynctortclueRequest();
req.setRpcContextString("{}");
AlibabaLvmsCopyrightSynctortclueRequest.PushTortClueDto obj1 = new AlibabaLvmsCopyrightSynctortclueRequest.PushTortClueDto();
obj1.setSerialCode("xxxxx");
obj1.setPolicyId("xxxxx");
obj1.setSource("xxxxx");
obj1.setContentUrl("xxxxx");
obj1.setContentTitle("xxxxx");
obj1.setLength("xxxxx");
obj1.setMonitorTime(StringUtils.parseDateTime("2000-01-01 00:00:00"));
obj1.setPublishAccountId("xxxxx");
obj1.setPublishAccountName("xxxxx");
obj1.setPublishTime(StringUtils.parseDateTime("2000-01-01 00:00:00"));
obj1.setWholeWorks(false);
obj1.setCommentCount(10L);
obj1.setDownloadCount(10L);
obj1.setShareCount(10L);
obj1.setBroadcastCount(10L);
obj1.setOfflineStatus("xxxxx");
obj1.setExternalWorksId("xxxxx");
obj1.setPlatformCode("xxxxx");
obj1.setTort(false);
obj1.setFollowStrategyProcessingTime(false);
obj1.setRemark("xxxxx");
obj1.setProcessStatus("xxxxx");
obj1.setExternalClueId("xxxxx");
obj1.setInvokeTimestamp(StringUtils.parseDateTime("2000-01-01 00:00:00"));
obj1.setTech("xxxxx");
List<AlibabaLvmsCopyrightSynctortclueRequest.FileDto> list3 = new ArrayList<AlibabaLvmsCopyrightSynctortclueRequest.FileDto>();
AlibabaLvmsCopyrightSynctortclueRequest.FileDto obj4 = new AlibabaLvmsCopyrightSynctortclueRequest.FileDto();
list3.add(obj4);
obj4.setUrl("xxxxx");
obj4.setFileName("xxxxx");
obj4.setFileId("xxxxx");
obj4.setValidStartDate(StringUtils.parseDateTime("2000-01-01 00:00:00"));
obj4.setValidEndDate(StringUtils.parseDateTime("2000-01-01 00:00:00"));
obj1.setAttachments(list3);
req.setPushTortClueDTO(obj1);
AlibabaLvmsCopyrightSynctortclueResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_lvms_copyright_synctortclue_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_copyright_synctortclue_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

返回
顶部