Properties Collection
API methods to work with Properties
Property is a physical premises – hotels, motels, lodges, cabins, chalets, luxury apartments and other types of buildings. Usually each property has a unique address.
Don't combine multiple properties into one, it's better they are all created separately with their own address and details
Properties List
Retrieve list of properties associated with user.
Request:
Pagination and Filters
By default, this method return first 10 element. To get more details, you should use Pagination arguments.
Information about count of entities and current pagination position contained at meta
section at response object.
This endpoint accept filters for fields: id
, title
, is_active
.
Returns
Success
Method can return a Success result with 200 OK
HTTP Code if operation is successful. Will contain a list of Property objects in the answer.
Unauthorised Error
Method can return a Unauthorised Error result with 401 Unauthorized
HTTP Code if wrong Bearer Token provided.
Property Options
Method to get list of all properties associated with current account without additional details and pagination limits.
Request:
Create Property
Create a new Property.
Request:
Query body (JSON):
Fields
title [required]
Any non-empty string with maximum length of 255 symbols. Note: The property will be represented in the system under that title.
currency [required]
3 symbols long string with Currency Alphabetic code based at ISO 4217. Note: This currency will be used as default currency for nested Property entities and provided as default property currency to 3rd party services.
email [optional]
String with a valid email address. Note: This email address will be provided to 3rd party services as contact email address for that property. Field is optional at initial setup step, but required when you try connect first 3rd party service.
phone [optional]
String with maximum length of 32 symbols. Can contain digits, spaces, brackets and special characters. Note: This phone will be provided to 3rd party services as contact email address for that property. Field is optional at initial setup step, but required when you try connect first 3rd party service.
zip_code [optional]
String with maximum length of 32 symbols. Note: This zip_code will be provided to 3rd party services as part of contact address for that property. Field is optional at initial setup step, but required when you try connect first 3rd party service.
country [optional]
2 symbols long string with Country Alpha-2 code based at ISO-3166-1. Note: This country will be provided to 3rd party services as part of contact address for that property. Field is optional at initial setup step, but required when you try connect first 3rd party service.
state [optional]
String with maximum length of 255 symbols. Note: This state will be provided to 3rd party services as part of contact address for that property. Field is optional at initial setup step, but required when you try connect first 3rd party service.
city [optional]
String with maximum length of 255 symbols. Note: This city will be provided to 3rd party services as part of contact address for that property. Field is optional at initial setup step, but required when you try connect first 3rd party service.
address [optional]
String with maximum length of 255 symbols. Note: This address will be provided to 3rd party services as part of contact address for that property. Field is optional at initial setup step, but required when you try connect first 3rd party service.
longitude [optional]
Decimal number represented as String with maximum length of 10 symbols. Can have maximum 7 decimal chars. Minimum value: -180. Maximum value: +180. Note: This field is part of property coordinates. Field is optional at initial setup step, but required when you try connect first 3rd party service.
latitude [optional]
Decimal number represented as String with maximum length of 9 symbols. Can have maximum 7 decimal chars. Minimum value: -90. Maximum value: +90. Note: This field is part of property coordinates. Field is optional at initial setup step, but required when you try connect first 3rd party service.
timezone [optional]
Timezone name from ISO 8601. All possible values you can find at Time zone database (https://www.iana.org/time-zones). More info about Time Zone database is here - https://en.wikipedia.org/wiki/Tz_database.
facilities [optional]
List of Property Facility IDs associated with Property.
property_type [optional]
Recommended you set this value since it affects billing. Set to "hotel" for hotels or "apartment" for vacation rentals.
One of possible values:
apart_hotel
apartment
boat
camping
capsule_hotel
chalet
country_house
farm_stay
guest_house
holiday_home
holiday_park
homestay
hostel
hotel
inn
lodge
motel
resort
riad
ryokan
tent
villa
group_id [optional]
String with valid UUID for Group object what you would like to use as Base Group for created Property. Field is optional, if it is not provided, system automatically assign Default User Group as Base Group for Property.
settings [optional]
Object with Property settings. Should contain next fields:
allow_availability_autoupdate
- option to allow increase and decrease Availability when bookings is came into Channex. [deprecated]
allow_availability_autoupdate_on_confirmation
- option to allow decrease Availability when new bookings is came into Channex.
allow_availability_autoupdate_on_modification
- option to allow increase and decrease Availability when booking modification is came into Channex.
allow_availability_autoupdate_on_cancellation
- option to allow decrease Availability when booking cancellation is came into Channex.
min_stay_type
- option to control simplified Min Stay restrictions. Can be useful for situation when your system support only one of Min Stay Types (Arrival or Through).
If your system work only with Min Stay Arrival or only with Min Stay Through you can setup that setting into arrival
or through
mode, as result we will simplify ARI updates and allow provide min stay changes under min_stay
key and automatically setup correct selection for Min Stay type at Channel mappings. Possible values: both
, arrival
, through
.
min_price
- setup minimum price per property. When user try to setup price less than min_price, system increase it up to minimum. Can be represented as a String with fraction part ("100.00") or as an Integer in lowest currency item (cents for USD as example, 10000 for 100.00 USD).
max_price
- setup maximum price per property. When user try to setup price greater than max_price, system decrease it up to maximum. Can be represented as a String with fraction part ("100.00") or as an Integer in lowest currency item (cents for USD as example, 10000 for 100.00 USD).
state_length
- setup length of inventory table for Property. Min value is 100 days, max value is 730 days.
cut_off_time
- setup cut off time for current property. Allow time value with 30 minutes steps.
At specific time, we automatically launch task and close inventory for today + cut_off_days
or for current date.
cut_off_days
- integer value for count of days which should be closed by CutOffDays.
content [optional]
Object with content information for property. Content object can contain:
description
- optional text field with Property description. By default Description will be equal to null
.
important_information
- optional text field with some important information about Property. Will be included into Booking confirmation emails.
photos
- optional list of photos associated with Property. Each photo is object with next fields:
url
- photo URL
position
- integer value to represent photo position at list, Photo with position equal to 0 is used as Cover Photo for property
description
- Photo text description
author
- Name of photo Author
kind
- one of three possible values: photo, ad (advertising), menu (restaurant menu photo).
More information about Photo API is here.
logo_url [optional]
String. Valid URL to property logo. Logo will be copied into our media storage.
website [optional]
String. Valid URL to property website.
Read only fields
acc_cannels_count
Integer. Count of connected channels. Aggregate.
Returns
Success
Method can return a Success result with 201 Created
HTTP Code if operation is successful. Will contain a Property object in the answer.
Unauthorised Error
Method can return a Unauthorised Error result with 401 Unauthorized
HTTP Code if wrong Bearer Token provided.
Validation Error
Method can return a Validation Error result with 422 Unprocessable Entity
HTTP Code if any validation rule is failed.
Get Property by ID
Retrieve specific property associated with User by ID.
Request:
Returns
Success
Method can return a Success result with 200 OK
HTTP Code if operation is successful. Will contain a Property object in the answer.
Unauthorised Error
Method can return a Unauthorised Error result with 401 Unauthorized
HTTP Code if wrong Bearer Token provided or User not have access to requested Property.
Update Property
Update property information.
Request:
Query body (JSON):
Fields
This method uses the same fields as Create Property method.
Returns
Success
Method can return a Success result with 200 OK
HTTP Code if operation is successful. Will contain a Property object in the answer.
Unauthorised Error
Method can return a Unauthorised Error result with 401 Unauthorized
HTTP Code if wrong Bearer Token provided or User not have access to requested Property.
Validation Error
Method can return a Validation Error result with 422 Unprocessable Entity
HTTP Code if any validation rule is failed.
Remove Property
Remove a Property.
Request:
DELETE /api/v1/properties/:id
Please, be careful, Remove Property operation can't be revert. Property will removed from system and you can't restore it, only create from scratch.
Please, keep in mind, to prevent accidents we are block ability to remove Property if it have at least 1 Channel. In case if you understand what are you doing, you can remove Property with force
flag option to remove Property even if it have associated channels.
Last updated