Returns every published customer review attached to any lodging managed by the authenticated dealers company. The dealer is resolved from the authenticated session — there is no path or query parameter; the result is implicitly scoped to the callers company.
| Authentication | Yes (dealer with a company) |
| Response Formats | xml, json |
| HTTP Method | GET |
| Response Object | List of customer review objects |
| API Version | v2 |
| Status | Cause |
|---|---|
| 403 Forbidden | The caller is not authenticated, or the authenticated dealer is not attached to a company. |
| 200 OK with empty list | The company has no lodgings yet, or none of its lodgings have any published review. |
[
{
"score": 9,
"title": "Excellent stay",
"body": "Beautiful location, very clean apartment, friendly host.",
"author": "John D.",
"lang": "en",
"propertyId": 1012345678901,
"city": "Cannes",
"labelPropertyType": "Apartment",
"photoId": 88123456,
"reviewDate": "2026-03-12T14:22:31+0100",
"bookingId": 5512345,
"discussion": [
{
"score": 0,
"body": "Thank you for your kind words!",
"author": "Property Manager",
"lang": "en",
"reviewDate": "2026-03-13T09:08:11+0100"
}
]
},
{
"score": 7,
"title": "Nice but a bit noisy",
"body": "Great location near the sea, however the street is busy at night.",
"author": "Marie L.",
"lang": "fr",
"propertyId": 1012345678902,
"city": "Nice",
"labelPropertyType": "Studio",
"photoId": 88567890,
"reviewDate": "2026-02-28T11:04:00+0100",
"bookingId": 5489001,
"discussion": []
}
]