# reservationssummary (B.XML)
Use the `xml/reservationssummary` endpoint to retrieve all of a property's reservations with check-out dates in the future. This summary only includes information that is essential for matching future modifications/cancellations of existing reservations. No guest details included, other than the guest's name.
## URL
```https
POST https://secure-supply-xml.booking.com/hotels/xml/reservationssummary
```
## Sample request
This request retrieves all reservations for property `375680`.
```xml
375680
```
## Request body
| Field | Description | Type | Required | Notes |
| --- | --- | --- | --- | --- |
| `request` | Root element. | object | Required | - |
| `hotel_id` | The Booking.com property ID for which you want to retrieve reservations. | string | Required | Max. occurrences: 1. |
## Sample response
A successful response looks like this:
```xml
testtest2015-03-293250701782015-02-20INR2015-02-2237568001Breakfast costs INR 15.00 per person per
night.73503501799964999700testtest2015-03-294381512972015-02-20INR2015-02-2137568001Breakfast costs INR 15.00 per person per night.73501799964999350
```
## Response body
| Field | Description | Type | Notes |
| --- | --- | --- | --- |
| `reservations` | - | array of `reservation` | - |
| `reservation` | - | object | - |
| `customer` | - | object | - |
| `first_name` | Guest's first/given name. | string | - |
| `last_name` | Guest's last/family name. | string | - |
| `date` | The date the reservation was made. | date | Format: `YYYY-MM-DD` |
| `time` | The time the reservation was made. | time | Format: `HH:MM:SS` (CET in winter, CEST in summer.) |
| `id` | The ID of the parent element. | string | Child of both `reservation` and `room`. |
| `room` | - | object | - |
| `arrival_date` | Planned check-in date. | date | Format: `YYYY-MM-DD` |
| `currencycode` | The [currency](/connectivity/docs/b_xml-currencies) used to pay for the reservation. | enum | Use [/xml/currencies](/connectivity/docs/b_xml-currencies) to retrieve a list of currency codes. |
| `departure_date` | Planned check-out date. | date | Format: `YYYY-MM-DD` |
| `meal_plan` | The [meal plan](/connectivity/docs/codes-mpt) description as it appears on Booking.com. | string | See also [Meal Plan Types](/connectivity/docs/codes-mpt). |
| `numberofguests` | The number of persons in the reservation. | integer | - |
| `price` | The price per day for the reservation. | integer | Currency is specified in `currencycode`. |
| `price[@date]` | The date on which the reservation was paid for. | date | Format: `YYYY-MM-DD` |
| `price[@rate_id]` | The ID of the [rate](/connectivity/docs/ota-hotelrateplannotif) used for the reservation. | string | - |
| `roomreservation_id` | The ID of the room reservation. | string | A `reservation` can include multiple rooms, and therefore multiple room reservations. |
| `totalprice` | The total price for the reservation. | integer | Currency is specified in `currencycode`. |