Skip to main content

CustomerReviewDto

customerNamestring

Name of customer.

Possible values: <= 50 characters

Example: John
titlestring

Summary of the comment

Example: Beautiful stay
countrystring

Country code represented in standard ISO 3166-1 ALPHA-2 format

Possible values: >= 2 characters and <= 2 characters

Example: DE
travelDatestring<date>

Date of arrival of the customer to the accommodation

Example: 2017-07-31
reviewDateTimestring

Date of review

Example: 2017-08-12 22:17:31
globalRatinginteger<int32>required

Overall rating of the entire stay

Possible values: >= 0 and <= 100

Example: 90
locationinteger<int32>

Rating of the location of the accommodation

Possible values: >= 0 and <= 100

Example: 90
localServiceinteger<int32>

Rating of the local services

Possible values: >= 0 and <= 100

Example: 95
furnishingsinteger<int32>

Rating of the furnishing of the accommodation

Possible values: >= 0 and <= 100

Example: 85
cleanlinessinteger<int32>

Rating of the cleanliness of the accommodation

Possible values: >= 0 and <= 100

Example: 70
valueForMoneyinteger<int32>

Rating of the value for money spent for the accommodation

Possible values: >= 0 and <= 100

Example: 100
beachinteger<int32>

Rating of the beaches around the accommodation

Possible values: >= 0 and <= 100

Example: 85
accommodationinteger<int32>

Rating of the accommodation.

Possible values: >= 0 and <= 100

Example: 80
hostinteger<int32>

Rating of the host

Possible values: >= 0 and <= 100

Example: 100
languagestring

Language used for review

Possible values: >= 2 characters and <= 2 characters

Example: en
textstring

Review text

Example: Great stay, very well located apartment.
positiveTextstring

Positive points

Example: Wonderful accommodation with great services
negativeTextstring

Negative points

Example: Location far from city center
hostResponse object

Host's response to this review (text, language, timestamp). Optional. Only set when the host has replied to the guest review.

responseTextstring

Text of the host's response to the guest review.

Example: Thank you for your stay!
responseLanguagestring

Language of the response, ISO 639-1 (2 chars). If unknown, providers may send the most probable one based on the review language.

Possible values: >= 2 characters and <= 2 characters

Example: en
responseDateTimestring

Date and time the host posted (or last edited) the response. If unknown, providers may approximate from the record's last update timestamp.

Example: 2017-08-15 09:00:00
CustomerReviewDto
{
"customerName": "John",
"title": "Beautiful stay",
"country": "DE",
"travelDate": "2017-07-31",
"reviewDateTime": "2017-08-12 22:17:31",
"globalRating": 90,
"location": 90,
"localService": 95,
"furnishings": 85,
"cleanliness": 70,
"valueForMoney": 100,
"beach": 85,
"accommodation": 80,
"host": 100,
"language": "en",
"text": "Great stay, very well located apartment.",
"positiveText": "Wonderful accommodation with great services",
"negativeText": "Location far from city center",
"hostResponse": {
"responseText": "Thank you for your stay!",
"responseLanguage": "en",
"responseDateTime": "2017-08-15 09:00:00"
}
}