Click or drag to resize

IBookingAuthenticateRestWcfServiceRentalObjectsCustomerReviewsXml Method

Uri for this REST service method:
https://appl.easybook.net/booking/xml/{partnerCode}/{consumerId}/rentalobjectcustomerreview?dateFrom={dateFrom}&dateTo={dateTo}&rentalObjectNoStart={rentalObjectNoStart}&rentalObjectNoEnd={rentalObjectNoEnd}&createdFrom={createdFrom}&createdTo={createdTo}&count={count}&offset={offset}&reviewStates={reviewStates}
Http method: GET
Response body format: Xml

Get customer reviews matching the criteria and across the selected rental objects. Please note, this method can maximum return data for 200 rental objects per call. If this maximum is exceeded a FaultException with error code NumberOfMaxRentalObjectsExceeded will be returned. If so, please reduce the number of matching rental objects by adjusting the criteria.

Namespace:  Tse.EasyBook.Server.WcfContracts.WebClient
Assembly:  Tse.EasyBook.Server.WcfContracts (in Tse.EasyBook.Server.WcfContracts.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
SearchCustomerReviewsResult RentalObjectsCustomerReviewsXml(
	string partnerCode,
	string consumerId,
	string dateFrom,
	string dateTo,
	string rentalObjectNoStart,
	string rentalObjectNoEnd,
	string createdFrom,
	string createdTo,
	string count,
	string offset,
	string reviewStates
)

Parameters

partnerCode
Type: SystemString
A path parameter containing the partner code a.k.a. the login. Example: /LHUSE
consumerId
Type: SystemString
A path parameter always assigned the integer number 1.Example: /1
dateFrom
Type: SystemString
A date formatted as DD-MM-YYYY. Limit the result to reviews attached to rental objects that can be rented on this date or later
dateTo
Type: SystemString
A date formatted as DD-MM-YYYY. Limit the result to reviews attached to rental objects that can be rented on this date or earlier
rentalObjectNoStart
Type: SystemString
Limit the result to reviews attached to rental objects with a number large than or equal to this number. The format of the number: ##-#### where # is number between 0 and 9. Use the endpoint GET /feeds/xml/{partnerCode}/{consumerId}/rentalobjectnumber to get all possible numbers.
rentalObjectNoEnd
Type: SystemString
Limit the result to reviews attached to rental objects with a number smaller than or equal to this number. The format of the number is still: ##-####
createdFrom
Type: SystemString
A date formatted as DD-MM-YYYY. Limit the result to reviews created on dates large than or equal to this date
createdTo
Type: SystemString
A date formatted as DD-MM-YYYY. Limit the result to reviews created on dates smaller than or equal to this date
count
Type: SystemString
The number of reviews to return in a batch starting at the offset of the criteria parameter Offsetoffset. The default value is 10. Please use the criteria Offset and Count besides the result field TotalCountTotalCount to get reviews in batches.
offset
Type: SystemString
The offset of a batch of reviews. The minimum value is 1 and it is also the default value. Please use the criteria Offset and Count besides the result field TotalCountTotalCount to get reviews in batches.
reviewStates
Type: SystemString
A comma separated list of string values. Possible values are: NewNew, ActiveActive and DeletedDeleted. The default value is: Active

Return Value

Type: SearchCustomerReviewsResult

[Missing <returns> documentation for "M:Tse.EasyBook.Server.WcfContracts.WebClient.IBookingAuthenticateRestWcfService.RentalObjectsCustomerReviewsXml(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)"]

See Also