文档中心 > API类目 > 天猫好房用户API

tmall.alihouse.customer.laike.data.check (来客通回流数据CHECK)

来客通回流数据CHECK

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
app_data_back_flow_query AppDataBackFlowQuery 必须 请求对象
  • └ biz_type
  • Number
  • 必须
  • 1
  • 业务域
  • └ data_type
  • Number
  • 必须
  • 1
  • 数据类型
  • └ start_time
  • Date
  • 可选
  • 2022-07-14 12:00:00
  • 开始时间
  • └ end_time
  • Date
  • 可选
  • 2022-07-14 13:00:00
  • 结束时间
  • └ id_list
  • Number []
  • 可选
  • [12,23,34]
  • ID列表

响应参数

名称 类型 示例值 描述
result Result 返回结果
  • └ result_msg
  • String
  • 成功
  • code描述
  • └ result_code
  • String
  • success
  • code
  • └ data
  • String
  • [{}]
  • 结果数据集合
  • └ is_success
  • Boolean
  • TRUE
  • 请求是否到达

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallAlihouseCustomerLaikeDataCheckRequest req = new TmallAlihouseCustomerLaikeDataCheckRequest();
TmallAlihouseCustomerLaikeDataCheckRequest.AppDataBackFlowQuery obj1 = new TmallAlihouseCustomerLaikeDataCheckRequest.AppDataBackFlowQuery();
obj1.setBizType(1L);
obj1.setDataType(1L);
obj1.setStartTime(StringUtils.parseDateTime("2022-07-14 12:00:00"));
obj1.setEndTime(StringUtils.parseDateTime("2022-07-14 13:00:00"));
obj1.setIdList(new Long[] { 12,23,34 };
);
req.setAppDataBackFlowQuery(obj1);
TmallAlihouseCustomerLaikeDataCheckResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_alihouse_customer_laike_data_check_response>
    <result>
        <result_msg>成功</result_msg>
        <result_code>success</result_code>
        <data>[{}]</data>
        <is_success>TRUE</is_success>
    </result>
</tmall_alihouse_customer_laike_data_check_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

返回
顶部