推模式 vs. 拉模式
编辑于: 2024-05-16 18:37
作为我们设计更新的一部分,应用截图目前正在修订中。
概述
德比软件GO提供了以下两种模式方式与GO渠道进行酒店房、价、态数据交互。
拉模式
在拉模式中,德比软件会根据酒店提供的税费规则,入住和预订约束条件进行房、价、态的计算。渠道无需应付这些复杂规则,可以像查询自己的数据库一样从德比查询酒店房价态缓存数据。
API组合:BookingUSB + ShoppingEngine
渠道通过 ShoppingEngine 从德比软件 GO 获取房价态缓存数据,德比软件维护缓存数据。
渠道通过 BookingUSB 接口,可以实时询价、可预订检查、预订、修改、取消及订单详情查询。
推模式
在推模式中,德比软件会根据设定的推送任务推送房价态数据给渠道,渠道根据税费规则,入住和预订约束条件进行房、价、态的计算,或打包门票等售卖。
API组合:BookingUSB + AvailabilityPeer
德比软件通过 AvailabilityPeer 接口,推送房价态缓存数据到渠道系统,渠道缓存房价态数据。
渠道通过 BookingUSB 接口,可以实时询价、可预订检查、预订、修改、取消及订单详情查询。
接口概要
标有“√”的 API 是必要开发接口,而标有“x”的则是可选但推荐开发。
AvailabilityPeer APIs | ||||
Category | API Name | Method | Mandatory | Comments |
---|---|---|---|---|
Detect | ping | get | x | |
Hotel API | /hotels/{supplierId} | get | √ | |
/hotel/{supplierId}/{hotelId} | get | √ | ||
ARI Push | /ari/daily/push | post | √ | |
/ari/los/push | post | √ |
ShoppingEngine APIs | ||||
Category | API Name | Method | Mandatory | Comments |
---|---|---|---|---|
Detect | ping | get | x | |
Hotel Setup | /hotels/{supplierId}/setup | post | √ | |
ARI Shopping | /shopping/multihotels | post | √ |
BookingUSB APIs | ||||
Category | API Name | Method | Mandatory | Comments |
---|---|---|---|---|
Detect | ping | get | x | |
Hotel API | /hotels/{supplierId} | get | √ | |
/hotel/{supplierId}/{hotelId} | get | √ | ||
Product Addon | /productAddon/{supplierId}/ {hotelId}/{type}/{code} | get | x | 对接 Disney 酒店+门票的渠道需要开发此接口 |
Promotion | /promotion/push | post | x | |
Reservation | /availability | post | √ | |
/productAddon/availability | post | x | 对接 Disney 酒店+门票的渠道需要开发此接口 | |
/reservation/prebook | post | √ | ||
/reservation/book | post | √ | ||
/reservation/modify | post | x | 对接 Disney 的渠道需要开发此接口 | |
/reservation/cancel | post | √ | ||
/reservations | post | x | ||
/reservation/detail | post | x | ||
Reservation Audit | /reservation/audit/push | post | x |
此回答是否有所帮助? 是 否
Send feedback