alibaba.footscan.report.get (查询脚型报告详情)

查询脚型报告详情,并更新用户信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
req_data String 必须 {"scanId":"jfeji","weixinNum":"jfeifjief","telephone":"13819181983"} 请求入参(scanId必传,weixinNum必传)
token String 必须 token token

响应参数

名称 类型 示例值 描述
result BizResult 返回结果对象
  • data
  • FeetModelReportDataVo
  • 响应主体
  • └ scan_time
  • Date
  • 2019-09-09 11:12:13
  • 扫描时间
  • └ brand_name
  • String
  • test
  • 品牌名称
  • └ store_name
  • String
  • test
  • 门店名称
  • └ device_number
  • String
  • test
  • 设备编号
  • └ foot_url
  • String
  • http://test.com
  • 3D脚模
  • └ birthday
  • Date
  • 2019-09-09 00:00:00
  • 出生年月
  • └ operator
  • String
  • test
  • 操作人
  • └ report_data
  • String
  • {"left_hougengao":"79.9mm","left_muzhigao":"30.3mm","rft_muwaifan":1,"left_fuwei":"279.5mm","right_diwuzhizhiwaikuan":"48.5mm","right_diyizhizhilikuan":"37.9mm","lft_zugong":2,"left_muzhipose":"245.7mm"}
  • 脚型数据
  • └ pdf_url
  • String
  • http://www.xxx.com/1.pdf
  • 脚型报告地址
  • └ code
  • Number
  • 0
  • code
  • └ message
  • String
  • 成功
  • 消息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaFootscanReportGetRequest req = new AlibabaFootscanReportGetRequest();
req.setReqData("{\"scanId\":\"jfeji\",\"weixinNum\":\"jfeifjief\",\"telephone\":\"13819181983\"}");
req.setToken("token");
AlibabaFootscanReportGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_footscan_report_get_response>
    <result>
        <data>
            <scan_time>2019-09-09 11:12:13</scan_time>
            <brand_name>test</brand_name>
            <store_name>test</store_name>
            <device_number>test</device_number>
            <foot_url>http://test.com</foot_url>
            <birthday>2019-09-09 00:00:00</birthday>
            <operator>test</operator>
            <report_data>{&quot;left_hougengao&quot;:&quot;79.9mm&quot;,&quot;left_muzhigao&quot;:&quot;30.3mm&quot;,&quot;rft_muwaifan&quot;:1,&quot;left_fuwei&quot;:&quot;279.5mm&quot;,&quot;right_diwuzhizhiwaikuan&quot;:&quot;48.5mm&quot;,&quot;right_diyizhizhilikuan&quot;:&quot;37.9mm&quot;,&quot;lft_zugong&quot;:2,&quot;left_muzhipose&quot;:&quot;245.7mm&quot;}</report_data>
            <pdf_url>http://www.xxx.com/1.pdf</pdf_url>
        </data>
        <code>0</code>
        <message>成功</message>
    </result>
</alibaba_footscan_report_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

返回
顶部