文档中心 > API类目 > AE-Oversea-Solution

aliexpress.solution.order.receiptinfo.get (Get Order Receipt Info)

Get Order Receipt Info, Support multi stores requirements for Turkey sellers.

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param1 SingleOrderQuery 可选 query param
  • └ order_id
  • Number
  • 可选
  • 123456789
  • order ID

响应参数

名称 类型 示例值 描述
result OrderAddressDto object result
  • └ country_name
  • String
  • Russian Federation
  • English country/region name
  • └ mobile_no
  • String
  • 4679974
  • mobile number
  • └ contact_person
  • String
  • Mark
  • Recipient
  • └ phone_country
  • String
  • 04
  • Phone country/region code
  • └ phone_area
  • String
  • 12345
  • Phone area code
  • └ province
  • String
  • Moscow
  • province
  • └ address
  • String
  • address 001
  • address 1
  • └ phone_number
  • String
  • 88688435
  • phone number
  • └ fax_number
  • String
  • 88688436
  • Fax number
  • └ detail_address
  • String
  • center street No.99
  • Street detailed address
  • └ city
  • String
  • Babenki
  • city
  • └ country
  • String
  • RU
  • country/region
  • └ address2
  • String
  • address 001
  • address 2
  • └ fax_country
  • String
  • 400120
  • Fax country/region code
  • └ zip
  • String
  • 400120
  • Postal code
  • └ fax_area
  • String
  • 203
  • Fax area code
  • └ localized_address
  • String
  • г. Москва
  • localized address, currently for buyer whose address is in Russia.

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressSolutionOrderReceiptinfoGetRequest req = new AliexpressSolutionOrderReceiptinfoGetRequest();
AliexpressSolutionOrderReceiptinfoGetRequest.SingleOrderQuery obj1 = new AliexpressSolutionOrderReceiptinfoGetRequest.SingleOrderQuery();
obj1.setOrderId(123456789L);
req.setParam1(obj1);
AliexpressSolutionOrderReceiptinfoGetResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<aliexpress_solution_order_receiptinfo_get_response>
    <result>
        <country_name>Russian Federation</country_name>
        <mobile_no>4679974</mobile_no>
        <contact_person>Mark</contact_person>
        <phone_country>04</phone_country>
        <phone_area>12345</phone_area>
        <province>Moscow</province>
        <address>address 001</address>
        <phone_number>88688435</phone_number>
        <fax_number>88688436</fax_number>
        <detail_address>center street No.99</detail_address>
        <city>Babenki</city>
        <country>RU</country>
        <address2>address 001</address2>
        <fax_country>400120</fax_country>
        <zip>400120</zip>
        <fax_area>203</fax_area>
        <localized_address>г. Москва</localized_address>
    </result>
</aliexpress_solution_order_receiptinfo_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

返回
顶部