注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 天猫汽车

tmall.car.lease.exceptionflowsynchronize (天猫开新车租后异常流线下处理状态通知接口)

天猫开新车租后异常流线下处理状态通知接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
order_id Number 必须 1000003461011111014 天猫开新车订单id
status Number 必须 1 1:开始切换为异常流,2:线下处理完成
flow_type Number 可选 1 异常流类型,0.退车,1.买断,2.分期,3.续租
desc String 必须 用户超期 切换原因描述

响应参数

名称 类型 示例值 描述
result ResultVo result
  • └ cost_time
  • Number
  • costTime
  • └ gmt_current_time
  • Number
  • gmtCurrentTime
  • └ msg_code
  • String
  • msgCode
  • └ msg_info
  • String
  • msgInfo
  • └ object
  • Boolean
  • true
  • object
  • └ success
  • Boolean
  • success

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallCarLeaseExceptionflowsynchronizeRequest req = new TmallCarLeaseExceptionflowsynchronizeRequest();
req.setOrderId(1000003461011111014L);
req.setStatus(1L);
req.setFlowType(1L);
req.setDesc("用户超期");
TmallCarLeaseExceptionflowsynchronizeResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_car_lease_exceptionflowsynchronize_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_exceptionflowsynchronize_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部