天猫开新车租后状态同步
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
order_id | Number | 必须 | 1000006423302111014 | 天猫开新车订单号 | |
biz_type | Number | 必须 | 1 | 业务类型:0.退车,1.买断,2.分期,3.续租 | |
action_type | Number | 必须 | 3 | 1:过户,2:续租,3.额外费用审核,4.退车完成 | |
action_value | Number | 必须 | 1 | 1:通过,-1:拒绝 | |
refuse_reason | String | 可选 | xxxxx | 拒绝原因 |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | ResultVo | result | |
|
1 2 3 4 5 6 7 8 9 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); TmallCarLeaseStatussynchronizeRequest req = new TmallCarLeaseStatussynchronizeRequest(); req.setOrderId(1000006423302111014L); req.setBizType(1L); req.setActionType(3L); req.setActionValue(1L); req.setRefuseReason( "xxxxx" ); TmallCarLeaseStatussynchronizeResponse rsp = client.execute(req, sessionKey); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 | < tmall_car_lease_statussynchronize_response > < result > < cost_time ></ cost_time > < gmt_current_time ></ gmt_current_time > < msg_code ></ msg_code > < msg_info ></ msg_info > < object >true</ object > < success ></ success > </ result > </ tmall_car_lease_statussynchronize_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 > |
错误码 | 错误描述 | 解决方案 |
---|