Rate Plans API

API to work with Rate Plans

Rate Plan is a pricing plan of how to sell your Room Types. This contains information about prices and other restrictions.

Retrieve a list of Rate Plans associated with Properties.

GET https://hotelcm-api-dev.zimple.cloud/api/v1/rate_plans

Headers

Name
Type
Description

user-api-key*

String

Retrieve a specific Rate Plan by ID.

GET https://hotelcm-api-dev.zimple.cloud/api/v1/rate_plans/:id

Headers

Name
Type
Description

user-api-key*

String

Update a Rate Plan.

PUT https://hotelcm-api-dev.zimple.cloud/api/v1/rate_plans/:id

Headers

Name
Type
Description

user-api-key*

String

Request Body

Name
Type
Description

Query Body*

JSON

{ "rate_plan": { "title": "Best Available Rate", "property_id": "888204c4-723a-3546-a254-8f4b2aeb1356", "room_type_id": "235d4672-dccd-4572-2356-b5ab87ce346b", "parent_rate_plan_id": null, "children_fee": "0.00", "infant_fee": "0.00", "options": [ { "occupancy": 3, "is_primary": true } ], "currency": "THB", "sell_mode": "per_room", "rate_mode": "manual", "inherit_rate": false, "inherit_closed_to_arrival": false, "inherit_closed_to_departure": false, "inherit_stop_sell": false, "inherit_min_stay_arrival": false, "inherit_min_stay_through": false, "inherit_max_stay": false, "inherit_max_sell": false, "inherit_max_availability": false, "inherit_availability_offset": false, "auto_rate_settings": null } }

Last updated