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

alibaba.lvms.brand.syncbrandrights (同步策略相关权利信息)

同步策略相关权利信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
rpc_context Json 可选 {} RpcContext
brand_sync_rights_d_t_o_s BrandSyncRightsDto 可选 brandSyncRightsDTOS
  • └ external_rights_id
  • String
  • 可选
  • xxxxx
  • 外部平台权利Id
  • └ operate_type
  • String
  • 可选
  • xxxxx
  • 操作类型
  • └ right_type
  • String
  • 可选
  • xxxxx
  • 权利类型
  • └ trade_name
  • String
  • 可选
  • xxxxx
  • 商标名称
  • └ application_number
  • String
  • 可选
  • xxxxx
  • 申请号
  • └ applicant
  • String
  • 可选
  • xxxxx
  • 申请人
  • └ international_classification
  • String
  • 可选
  • xxxxx
  • 国际分类网址
  • trademark_logo
  • 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
  • 结束时间
  • └ nation
  • String
  • 可选
  • xxxxx
  • 国家地区
  • └ title
  • String
  • 可选
  • xxxxx
  • 作品名称
  • └ license_number
  • String
  • 可选
  • xxxxx
  • 登记号
  • └ copyright_owner
  • String
  • 可选
  • xxxxx
  • 著作权人
  • └ work_category
  • String
  • 可选
  • xxxxx
  • 作品分类
  • └ obtain_rights_way
  • String
  • 可选
  • xxxxx
  • 权利获得方式
  • └ delegate_security_ids
  • String []
  • 可选
  • Top,Pub
  • 委托加密Id

响应参数

名称 类型 示例值 描述
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);
AlibabaLvmsBrandSyncbrandrightsRequest req = new AlibabaLvmsBrandSyncbrandrightsRequest();
req.setRpcContextString("{}");
AlibabaLvmsBrandSyncbrandrightsRequest.BrandSyncRightsDto obj1 = new AlibabaLvmsBrandSyncbrandrightsRequest.BrandSyncRightsDto();
obj1.setExternalRightsId("xxxxx");
obj1.setOperateType("xxxxx");
obj1.setRightType("xxxxx");
obj1.setTradeName("xxxxx");
obj1.setApplicationNumber("xxxxx");
obj1.setApplicant("xxxxx");
obj1.setInternationalClassification("xxxxx");
AlibabaLvmsBrandSyncbrandrightsRequest.FileDto obj2 = new AlibabaLvmsBrandSyncbrandrightsRequest.FileDto();
obj2.setUrl("xxxxx");
obj2.setFileName("xxxxx");
obj2.setFileId("xxxxx");
obj2.setValidStartDate(StringUtils.parseDateTime("2000-01-01 00:00:00"));
obj2.setValidEndDate(StringUtils.parseDateTime("2000-01-01 00:00:00"));
obj1.setTrademarkLogo(obj2);
obj1.setNation("xxxxx");
obj1.setTitle("xxxxx");
obj1.setLicenseNumber("xxxxx");
obj1.setCopyrightOwner("xxxxx");
obj1.setWorkCategory("xxxxx");
obj1.setObtainRightsWay("xxxxx");
obj1.setDelegateSecurityIds("Top,Pub");
req.setBrandSyncRightsDTOS(obj1);
AlibabaLvmsBrandSyncbrandrightsResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_lvms_brand_syncbrandrights_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_syncbrandrights_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

返回
顶部