alibaba.footscan.data.report.list (根据昵称查询脚型报告参数列表)

根据昵称查询脚型报告参数列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
nickname String 必须 test 昵称
page_index Number 可选 1 开始页数
page_size Number 可选 10 每页页数
token String 必须 fj81471948 token

响应参数

名称 类型 示例值 描述
result BizResult 返回结果对象
  • └ message
  • String
  • 成功
  • 返回小心
  • data
  • PageModel
  • 分页
  • data_list
  • FeetModelReportDataVo []
  • 返回列表
  • └ scan_time
  • Date
  • 2019-01-12 13:14:15
  • 扫码时间
  • └ brand_name
  • String
  • test
  • 品牌名称
  • └ store_name
  • String
  • test
  • 门店名称
  • └ device_number
  • String
  • test
  • 设备编号
  • └ foot_url
  • String
  • http://test.com
  • 3d stl脚型模型url
  • └ report_data
  • String
  • {"left_hougengao":"69.7mm","left_muzhigao":"34.3mm","left_fuwei":"243.7mm","right_diwuzhizhiwaikuan":"57.0mm","rft_muwaifan":0,"right_diyizhizhilikuan":"44.6mm","left_muzhipose":"242.0mm"}
  • 脚型数据json字符串
  • └ current_page
  • Number
  • 1
  • 当前页
  • └ total_page
  • Number
  • 20
  • 总页数
  • └ count
  • Number
  • 200
  • 总数量
  • └ code
  • Number
  • 0
  • code

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaFootscanDataReportListRequest req = new AlibabaFootscanDataReportListRequest();
req.setNickname("test");
req.setPageIndex(1L);
req.setPageSize(10L);
req.setToken("fj81471948");
AlibabaFootscanDataReportListResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_footscan_data_report_list_response>
    <result>
        <message>成功</message>
        <data>
            <data_list>
                <feet_model_report_data_vo>
                    <scan_time>2019-01-12 13:14:15</scan_time>
                    <brand_name>test</brand_name>
                    <store_name>test</store_name>
                    <device_number>test</device_number>
                    <foot_url>http://test.com</foot_url>
                    <report_data>{&quot;left_hougengao&quot;:&quot;69.7mm&quot;,&quot;left_muzhigao&quot;:&quot;34.3mm&quot;,&quot;left_fuwei&quot;:&quot;243.7mm&quot;,&quot;right_diwuzhizhiwaikuan&quot;:&quot;57.0mm&quot;,&quot;rft_muwaifan&quot;:0,&quot;right_diyizhizhilikuan&quot;:&quot;44.6mm&quot;,&quot;left_muzhipose&quot;:&quot;242.0mm&quot;}</report_data>
                </feet_model_report_data_vo>
            </data_list>
            <current_page>1</current_page>
            <total_page>20</total_page>
            <count>200</count>
        </data>
        <code>0</code>
    </result>
</alibaba_footscan_data_report_list_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

返回
顶部