#### [← Step 6 – Push availability](/connectivity/docs/tut-ready-to-check/step-6) | [Epilogue – What's next? →](/connectivity/docs/tut-ready-to-check/epilogue)

# Step 7 – Checks

Time for the big moment: finding out if your property passes our checks. Use this method and URL to run the checks on your property:


```https
POST https://supply-xml.booking.com/hotels/ota/OTA_HotelSummaryNotif
```

## Sample request


```xml
<?xml version="1.0" encoding="UTF-8"?>
<OTA_HotelSummaryNotifRQ
  Version="1.005"
  xmlns="http://www.opentravel.org/OTA/2003/05"
  HotelCode="{PropertyID}">
  <HotelSummaryMessages>
    <HotelSummaryMessage StatusType="Check" />
  </HotelSummaryMessages>
</OTA_HotelSummaryNotifRQ>
```

## Sample response

A successful response may contain warnings, but no errors:


```xml
<?xml version="1.0" encoding="UTF-8"?>
<OTA_HotelSummaryNotifRS xmlns="http://www.opentravel.org/OTA/2003/05" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opentravel.org/OTA/2003/05 OTA_HotelSummaryNotifRS.xsd" TimeStamp="2018-02-20T13:27:39+00:00" Target="Production" Version="3.000">
    <!-- Hotel 1234567 is in Test Hotel status -->
    <Warnings>
        <Warning Code="733" ShortText="Restricted">total_num_rates: Hotel Info: Number of defined rates: 2</Warning>
        <Warning Code="733" ShortText="Restricted">generated_hotel_page: Auto gen not run</Warning>
        <Warning Code="733" ShortText="Restricted">total_num_rooms: Hotel Info: Number of active rooms: 1</Warning>
        <Warning Code="733" ShortText="Restricted">total_num_products: Hotel Info: Number of defined products: 1</Warning>
    </Warnings>
    <Success />
</OTA_HotelSummaryNotifRS>
<!-- RUID: [UmFuZ...] -->
```