淘宝大件行业退货退款上门取件结果回传
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
refund_operate_result_request | RefundOperateResultRequest | 必须 | 入参 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | Result | 返回值 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); IndustryDajianRpPickupResultRequest req = new IndustryDajianRpPickupResultRequest(); IndustryDajianRpPickupResultRequest.RefundOperateResultRequest obj1 = new IndustryDajianRpPickupResultRequest.RefundOperateResultRequest(); obj1.setBizActionTypeCode( "pickup" ); obj1.setPicList( "" xxx.png "" ); obj1.setActualFinishTime(StringUtils.parseDateTime( "2024-11-11 23:23:23" )); obj1.setResult( true ); obj1.setSellerId(123456L); obj1.setPlanPickSlice( "day" ); obj1.setIsRefund( false ); obj1.setPlanPickDate(StringUtils.parseDateTime( "2024-03-01 00:00:00" )); obj1.setFailCode( "不符合退货条件" ); obj1.setComment( "自定义文案描述" ); obj1.setExtendFields( "{\"key\":\"value\"}" ); obj1.setRefundId(2134L); obj1.setRefundCollaborativeCode( "rp1234" ); obj1.setActualPickupTime(StringUtils.parseDateTime( "2024-11-11 23:23:23" )); obj1.setScItemId(12345L); obj1.setScItemNum(2L); obj1.setGoodsState(1L); req.setRefundOperateResultRequest(obj1); IndustryDajianRpPickupResultResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 | < industry_dajian_rp_pickup_result_response > < result > < success >true</ success > < error_code >SYSTEM_ERROR</ error_code > < error_msg >系统错误</ error_msg > </ result > </ industry_dajian_rp_pickup_result_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 > |
错误码 | 错误描述 | 解决方案 |
---|