文档中心 > API类目 > 天猫汽车

tmall.aliauto.lead.info.get (天猫汽车线索-查询线索信息)

天猫汽车线索-查询线索信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
lead_top_query LeadTopQuery 必须 请求参数
  • └ order_id
  • Number
  • 可选
  • 4277659395456225432
  • 订单号

响应参数

名称 类型 示例值 描述
data LeadTopInfoDTO data
  • └ brand_name
  • String
  • 长城
  • 品牌名称
  • └ item_title
  • String
  • 商品xxx汽车
  • 商品标题
  • └ order_id
  • Number
  • 4277659395456225300
  • 订单号
  • └ series_name
  • String
  • 车系
  • 车系名称
  • └ order_status
  • String
  • CLOSE
  • 订单状态
  • └ gmt_create
  • Date
  • 1742880859000
  • 创建时间
  • └ series_id
  • Number
  • 2747
  • 车系id
  • └ item_id
  • Number
  • 846195099548
  • 商品id
  • └ order_amount
  • Number
  • 0
  • 订单金额
  • └ lead_type
  • String
  • ZERO
  • 线索类型
  • └ lead_no
  • String
  • 1851125030483093545
  • 线索编号
  • └ brand_id
  • Number
  • 9
  • 品牌id
  • └ lead_num
  • String
  • 15000001224
  • 留资联系方式
  • └ sku_outer_id
  • String
  • 123
  • sku商家编码
  • └ rating
  • String
  • ""
  • 评级
result_success Boolean true 返回状态
msg_info String 信息 msgInfo
msg_code String 200 msgCode

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallAliautoLeadInfoGetRequest req = new TmallAliautoLeadInfoGetRequest();
TmallAliautoLeadInfoGetRequest.LeadTopQuery obj1 = new TmallAliautoLeadInfoGetRequest.LeadTopQuery();
obj1.setOrderId(4277659395456225432L);
req.setLeadTopQuery(obj1);
TmallAliautoLeadInfoGetResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_aliauto_lead_info_get_response>
    <data>
        <brand_name>长城</brand_name>
        <item_title>商品xxx汽车</item_title>
        <order_id>4277659395456225300</order_id>
        <series_name>车系</series_name>
        <order_status>CLOSE</order_status>
        <gmt_create>1742880859000</gmt_create>
        <series_id>2747</series_id>
        <item_id>846195099548</item_id>
        <order_amount>0</order_amount>
        <lead_type>ZERO</lead_type>
        <lead_no>1851125030483093545</lead_no>
        <brand_id>9</brand_id>
        <lead_num>15000001224</lead_num>
        <sku_outer_id>123</sku_outer_id>
        <rating>&quot;&quot;</rating>
    </data>
    <result_success>true</result_success>
    <msg_info>信息</msg_info>
    <msg_code>200</msg_code>
</tmall_aliauto_lead_info_get_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

返回
顶部