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

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

aliexpress.solution.issue.partner.rma.screening.create (aliexpress.solution.issue.partner.rma.screening.create)

Receives information about screening results from after sales partners

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
screening_result_creation_request RmaScreeningCreationRequest 必须 Screening result creation request
  • └ result
  • String
  • 必须
  • OK
  • Values: OK, NO_OK
  • └ rma_id
  • String
  • 必须
  • 012345678901234
  • RMA ID
  • └ screening_date
  • Date
  • 必须
  • 2017-01-01 00:00:00
  • Date of screening
  • └ screening_result_details
  • String
  • 可选
  • All ok
  • Description of the screening result
  • └ screening_result_reasons
  • String
  • 必须
  • CUSTOMER_FAULT
  • Values: CUSTOMER_FAULT, GIVE_UP_UNSEALED, GIVE_UP_SEALED, DOA_SEALED_QUALITY_ISSUE, DOA_SEALED_NO_QUALITY_ISSUE

响应参数

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

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressSolutionIssuePartnerRmaScreeningCreateRequest req = new AliexpressSolutionIssuePartnerRmaScreeningCreateRequest();
AliexpressSolutionIssuePartnerRmaScreeningCreateRequest.RmaScreeningCreationRequest obj1 = new AliexpressSolutionIssuePartnerRmaScreeningCreateRequest.RmaScreeningCreationRequest();
obj1.setResult("OK");
obj1.setRmaId("012345678901234");
obj1.setScreeningDate(StringUtils.parseDateTime("2017-01-01 00:00:00"));
obj1.setScreeningResultDetails("All ok");
obj1.setScreeningResultReasons("CUSTOMER_FAULT");
req.setScreeningResultCreationRequest(obj1);
AliexpressSolutionIssuePartnerRmaScreeningCreateResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

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

返回
顶部