帮卖订单履约,回收商同步订单信息,驱动交易流转
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
param | ConsignmentOrderSynDto | 可选 | 帮卖订单同步DTO | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | Result | 接口返回model | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaIdleConsignmentOrderPerformRequest req = new AlibabaIdleConsignmentOrderPerformRequest(); AlibabaIdleConsignmentOrderPerformRequest.ConsignmentOrderSynDto obj1 = new AlibabaIdleConsignmentOrderPerformRequest.ConsignmentOrderSynDto(); AlibabaIdleConsignmentOrderPerformRequest.Attribute obj2 = new AlibabaIdleConsignmentOrderPerformRequest.Attribute(); obj2.setPayOrderId( "1234" ); obj2.setForfeitFee( "12300" ); obj2.setServiceFee( "1200" ); obj2.setDealAmt( "123400" ); obj2.setEndTime( "\"2019-01-01 12:12:12\"" ); obj2.setAuctionId( "1234566" ); obj2.setCloseReason( "不想卖" ); obj2.setConfirmAmt( "123400" ); obj2.setMailNo( "12345" ); obj2.setPayAmt( "123400" ); obj2.setMaxDealAmt( "123400" ); obj2.setRateContent( "卖家很诚信" ); obj2.setRateGrade( "1" ); obj1.setAttribute(obj2); obj1.setOrderSubStatus( "31" ); obj1.setOrderStatus( "1" ); obj1.setBizOrderId( "1233345667" ); req.setParam(obj1); AlibabaIdleConsignmentOrderPerformResponse rsp = client.execute(req, sessionKey); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 | < alibaba_idle_consignment_order_perform_response > < result > < err_msg >帮卖交易履约服务不可用</ err_msg > < err_code >isp.service-unavailable</ err_code > < success >false</ success > </ result > </ alibaba_idle_consignment_order_perform_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 > |
错误码 | 错误描述 | 解决方案 |
---|