aliexpress.trade.redefining.findorderreceiptinfo (订单收货信息查询)

订单收货信息查询(试用)

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param1 TpOpenSingleOrderQuery 可选 查询条件
  • └ order_id
  • Number
  • 可选
  • 123456789
  • 订单ID

响应参数

名称 类型 示例值 描述
result TpOpenAddressDto 见以下字段 出参
  • └ fax_area
  • String
  • 203
  • 传真区号
  • └ zip
  • String
  • 400120
  • 邮编
  • └ fax_country
  • String
  • 400120
  • 传真国家/地区码
  • └ address2
  • String
  • address 001
  • 地址2
  • └ country
  • String
  • RU
  • 国家/地区编码
  • └ city
  • String
  • Babenki
  • 城市
  • └ detail_address
  • String
  • center street No.99
  • 街道详细地址
  • └ fax_number
  • String
  • 88688436
  • 传真号
  • └ phone_number
  • String
  • 88688435
  • 电话
  • └ address
  • String
  • address 001
  • 地址1
  • └ province
  • String
  • Moscow
  • 省份
  • └ phone_area
  • String
  • 12345
  • 区号
  • └ phone_country
  • String
  • 04
  • 国家/地区码
  • └ contact_person
  • String
  • Mark
  • 收件人
  • └ mobile_no
  • String
  • 4679974
  • 手机
  • └ country_name
  • String
  • Russian Federation
  • 国家/地区全称
  • └ cpf_no
  • String
  • 87654321
  • 个人税号

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressTradeRedefiningFindorderreceiptinfoRequest req = new AliexpressTradeRedefiningFindorderreceiptinfoRequest();
AliexpressTradeRedefiningFindorderreceiptinfoRequest.TpOpenSingleOrderQuery obj1 = new AliexpressTradeRedefiningFindorderreceiptinfoRequest.TpOpenSingleOrderQuery();
obj1.setBuyerAliid(100000L);
obj1.setFieldList("orderAmount");
obj1.setSellerOperatorAliid(20000L);
obj1.setShowId("1");
obj1.setExtInfoBitFlag(10100L);
obj1.setOrderId(123456789L);
obj1.setSellerAliid(20000L);
req.setParam1(obj1);
AliexpressTradeRedefiningFindorderreceiptinfoResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<aliexpress_trade_redefining_findorderreceiptinfo_response>
    <result>
        <fax_area>203</fax_area>
        <zip>400120</zip>
        <fax_country>400120</fax_country>
        <address2>address 001</address2>
        <country>RU</country>
        <city>Babenki</city>
        <detail_address>center street No.99</detail_address>
        <fax_number>88688436</fax_number>
        <phone_number>88688435</phone_number>
        <address>address 001</address>
        <province>Moscow</province>
        <phone_area>12345</phone_area>
        <phone_country>04</phone_country>
        <contact_person>Mark</contact_person>
        <mobile_no>4679974</mobile_no>
        <country_name>Russian Federation</country_name>
        <cpf_no>87654321</cpf_no>
    </result>
</aliexpress_trade_redefining_findorderreceiptinfo_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

返回
顶部