文档中心 > API类目 > 火车票API

taobao.train.stop.agent.callback (火车票车次停运信息商家回调)

火车票车次停运信息商家回调接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
train_agent_stop_info TrainAgentStopInfo 必须 代理商车次停运信息
  • └ train_no
  • String
  • 必须
  • G123
  • 车次号
  • └ dep_time
  • String
  • 必须
  • 2022-07-31 10:12:00
  • 发车时间
  • └ from_station
  • String
  • 必须
  • 北京南
  • 出发车站
  • └ to_station
  • String
  • 必须
  • 杭州东
  • 到达车站
  • └ train_status
  • String
  • 必须
  • STOP
  • 车次状态:STOP 停运、NORMAL 正常开行、NO_TRAIN 无车次、UN_KNOWN未知状态
  • └ uuid
  • String
  • 必须
  • 46d32867-15b2-443a-9d18-a00e21239fca
  • uuid唯一标识

响应参数

名称 类型 示例值 描述
is_success Boolean false 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TrainStopAgentCallbackRequest req = new TrainStopAgentCallbackRequest();
TrainStopAgentCallbackRequest.TrainAgentStopInfo obj1 = new TrainStopAgentCallbackRequest.TrainAgentStopInfo();
obj1.setTrainNo("G123");
obj1.setDepTime("2022-07-31 10:12:00");
obj1.setFromStation("北京南");
obj1.setToStation("杭州东");
obj1.setTrainStatus("STOP");
obj1.setUuid("46d32867-15b2-443a-9d18-a00e21239fca");
req.setTrainAgentStopInfo(obj1);
TrainStopAgentCallbackResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<train_stop_agent_callback_response>
    <is_success>false</is_success>
</train_stop_agent_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

返回
顶部