taobao.taojie.parking.withholout.callback (车辆免密出场回调)

免密车辆出场

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
car_no String 必须 浙A88888 停车场Id
park_id String 必须 CXYT001 车牌号
checkout_time String 必须 2018-07-24 13:32:53 出场时间
start_time String 必须 2018-07-24 13:32:53 入场时间
parking_time_length String 必须 10 时长
calculated_count Number 必须 100 停车费

响应参数

名称 类型 示例值 描述
message String 错误信息 message
trace_info String traceInfo
model Boolean true model
su_code String code
is_success Boolean success

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TaojieParkingWithholoutCallbackRequest req = new TaojieParkingWithholoutCallbackRequest();
req.setCarNo("浙A88888");
req.setParkId("CXYT001");
req.setCheckoutTime("2018-07-24 13:32:53");
req.setStartTime("2018-07-24 13:32:53");
req.setParkingTimeLength("10");
req.setCalculatedCount(100L);
TaojieParkingWithholoutCallbackResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<taojie_parking_withholout_callback_response>
    <message>错误信息</message>
    <trace_info></trace_info>
    <model>true</model>
    <su_code></su_code>
    <is_success></is_success>
</taojie_parking_withholout_callback_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

返回
顶部