Create a screening result from customer service partner
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
screening_result_creation_request | RmaScreeningCreationRequest | 必须 | Screening result creation request | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
code_error | String | E1 | errorCode |
error_description | String | Invalid RMA ID | errorDescription |
1 2 3 4 5 6 7 8 9 10 11 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AliexpressSpainIssuePartnerRmaScreeningCreateRequest req = new AliexpressSpainIssuePartnerRmaScreeningCreateRequest(); AliexpressSpainIssuePartnerRmaScreeningCreateRequest.RmaScreeningCreationRequest obj1 = new AliexpressSpainIssuePartnerRmaScreeningCreateRequest.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); AliexpressSpainIssuePartnerRmaScreeningCreateResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 | < aliexpress_spain_issue_partner_rma_screening_create_response > < code_error >E1</ code_error > < error_description >Invalid RMA ID</ error_description > </ aliexpress_spain_issue_partner_rma_screening_create_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|