注意:以下文档只适用于TOP接口,请谨慎使用!

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

aliexpress.solution.issue.partner.rma.reverselogistic.trackinginfo.create (aliexpress.solution.issue.partner.rma.reverselogistic.trackinginfo.create)

Receives information about reverse logistics tracking info

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
logistics_order_creation_request LogisticOrderCreationForRmaRequest 必须 Logistic's order creation request
  • └ dispute_id
  • Number
  • 必须
  • 2345243532
  • The dispute Id
  • └ tracking_code
  • String
  • 必须
  • X1234
  • Carrier tracking code. Tracking code or Shipping code must be provided
  • └ order_date
  • Date
  • 必须
  • 2017-01-01 00:00:00
  • Order date. PST time
  • └ logistic_reason
  • String
  • 必须
  • PRODUCT_CUSTOMER_PICKUP
  • Values: PRODUCT_CUSTOMER_GATHERING,PRODUCT_RETURN_CUSTOMER,PRODUCT_RETURN_WAREHOUSE,PRODUCT_RETURN_SUPPLIER
  • └ carrier_name
  • String
  • 必须
  • Correos
  • Carrier name

响应参数

名称 类型 示例值 描述
code_error String Error code. 0 value is no error.
error_description String Error description

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressSolutionIssuePartnerRmaReverselogisticTrackinginfoCreateRequest req = new AliexpressSolutionIssuePartnerRmaReverselogisticTrackinginfoCreateRequest();
AliexpressSolutionIssuePartnerRmaReverselogisticTrackinginfoCreateRequest.LogisticOrderCreationForRmaRequest obj1 = new AliexpressSolutionIssuePartnerRmaReverselogisticTrackinginfoCreateRequest.LogisticOrderCreationForRmaRequest();
obj1.setDisputeId(2345243532L);
obj1.setTrackingCode("X1234");
obj1.setOrderDate(StringUtils.parseDateTime("2017-01-01 00:00:00"));
obj1.setLogisticReason("PRODUCT_CUSTOMER_PICKUP");
obj1.setCarrierName("Correos");
req.setLogisticsOrderCreationRequest(obj1);
AliexpressSolutionIssuePartnerRmaReverselogisticTrackinginfoCreateResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<aliexpress_solution_issue_partner_rma_reverselogistic_trackinginfo_create_response>
    <code_error></code_error>
    <error_description></error_description>
</aliexpress_solution_issue_partner_rma_reverselogistic_trackinginfo_create_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

返回
顶部