文档中心 > API类目 > 酒店在线预订API

alitrip.xhotel.channel.notify (分销渠道各类通知接口)

分销渠道支付通知

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
order_notify_query OrderNotifyQuery 可选 通知类型查询条件
  • └ pay_time
  • Date
  • 可选
  • 2020-02-10 12:00:00
  • 支付时间
  • └ biz_order_id
  • Number
  • 可选
  • 2222222
  • 订单号
  • └ notify_type
  • Number
  • 可选
  • 0
  • 通知类型,0代表支付通知
  • └ platform_promotion
  • Number
  • 可选
  • 11111
  • 平台促销
  • └ member_card_no
  • String
  • 可选
  • a12134
  • 会员卡号

响应参数

名称 类型 示例值 描述
result HbsResult xxx 结果信息
  • └ success
  • Boolean
  • true
  • 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlitripXhotelChannelNotifyRequest req = new AlitripXhotelChannelNotifyRequest();
AlitripXhotelChannelNotifyRequest.OrderNotifyQuery obj1 = new AlitripXhotelChannelNotifyRequest.OrderNotifyQuery();
obj1.setPayTime(StringUtils.parseDateTime("2020-02-10 12:00:00"));
obj1.setBizOrderId(2222222L);
obj1.setNotifyType(0L);
obj1.setPlatformPromotion(11111L);
obj1.setMemberCardNo("a12134");
req.setOrderNotifyQuery(obj1);
AlitripXhotelChannelNotifyResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alitrip_xhotel_channel_notify_response>
    <result>
        <success>true</success>
    </result>
</alitrip_xhotel_channel_notify_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

返回
顶部