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

alibaba.lvms.brand.querybrandright (查询权利信息)

查询权利信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
rpc_context Json 可选 {} RpcContext
brand_right_query BrandRightQuery 可选 brandRightQuery
  • └ right_type
  • String
  • 可选
  • xxxxx
  • 权利类型
  • └ application_number
  • String
  • 可选
  • xxxxx
  • 申请号
  • └ international_classification
  • String
  • 可选
  • xxxxx
  • 国际分类
  • └ copyright_name
  • String
  • 可选
  • xxxxx
  • 作品名称
  • └ apply_no
  • String
  • 可选
  • xxxxx
  • 登记号

响应参数

名称 类型 示例值 描述
lvms_result_d_t_o LvmsResultDto lvmsResultDTO
  • data
  • BrandRightsDto
  • 响应结果
  • └ 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
  • 权利获得方式
  • └ 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);
AlibabaLvmsBrandQuerybrandrightRequest req = new AlibabaLvmsBrandQuerybrandrightRequest();
req.setRpcContextString("{}");
AlibabaLvmsBrandQuerybrandrightRequest.BrandRightQuery obj1 = new AlibabaLvmsBrandQuerybrandrightRequest.BrandRightQuery();
obj1.setRightType("xxxxx");
obj1.setApplicationNumber("xxxxx");
obj1.setInternationalClassification("xxxxx");
obj1.setCopyrightName("xxxxx");
obj1.setApplyNo("xxxxx");
req.setBrandRightQuery(obj1);
AlibabaLvmsBrandQuerybrandrightResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_lvms_brand_querybrandright_response>
    <lvms_result_d_t_o>
        <data>
            <external_rights_id>xxxxx</external_rights_id>
            <operate_type>xxxxx</operate_type>
            <right_type>xxxxx</right_type>
            <trade_name>xxxxx</trade_name>
            <application_number>xxxxx</application_number>
            <applicant>xxxxx</applicant>
            <international_classification>xxxxx</international_classification>
            <trademark_logo>
                <url>xxxxx</url>
                <file_name>xxxxx</file_name>
                <file_id>xxxxx</file_id>
                <valid_start_date>2000-01-01 00:00:00</valid_start_date>
                <valid_end_date>2000-01-01 00:00:00</valid_end_date>
            </trademark_logo>
            <nation>xxxxx</nation>
            <title>xxxxx</title>
            <license_number>xxxxx</license_number>
            <copyright_owner>xxxxx</copyright_owner>
            <work_category>xxxxx</work_category>
            <obtain_rights_way>xxxxx</obtain_rights_way>
        </data>
        <count>10</count>
        <success>false</success>
        <code>xxxxx</code>
        <message>xxxxx</message>
    </lvms_result_d_t_o>
</alibaba_lvms_brand_querybrandright_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

返回
顶部