汽车商家通过此api修改整车分阶段订单的尾款金额
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
command | ModifyRestPaymentCommand | 必须 | 入参 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | AliAutoResult | {} | 出参 |
|
1 2 3 4 5 6 7 8 9 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); TmallAliautoTradeRestpayfeeModifyRequest req = new TmallAliautoTradeRestpayfeeModifyRequest(); TmallAliautoTradeRestpayfeeModifyRequest.ModifyRestPaymentCommand obj1 = new TmallAliautoTradeRestpayfeeModifyRequest.ModifyRestPaymentCommand(); obj1.setOrderId(123456L); obj1.setTargetActualPayFee(100000L); obj1.setSubPayOrderId(123456L); req.setCommand(obj1); TmallAliautoTradeRestpayfeeModifyResponse rsp = client.execute(req, sessionKey); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 | < tmall_aliauto_trade_restpayfee_modify_response > < result > < success >true</ success > < msg_info >订单不存在</ msg_info > < msg_code >ORDER_NOT_EXIST</ msg_code > </ result > </ tmall_aliauto_trade_restpayfee_modify_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 > |
错误码 | 错误描述 | 解决方案 |
---|