GET /v2/customerReview/company/reviews

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.

Resource information

Authentication Yes (dealer with a company)
Response Formats xml, json
HTTP Method GET
Response Object List of customer review objects
API Version v2

Errors

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.

Example Request

https://api.poplidays.com/v2/customerReview/company/reviews

Example Response

json response body

[
    {
        "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": []
    }
]

Notes

  • Reviews are returned across all lodgings of the company; there is no per-lodging filter on this endpoint. To get reviews for a single lodging, use the per-lodging endpoint instead.
  • The discussion field carries the reply thread (e.g. property manager reply). Each reply has the same shape as a top-level review.
  • Field-level definitions are documented on the customer review page.