You can search the bookings list through with several filters. Within the tag filters -> filter type you can specify the parameter of your search:

  • type booking + from “yyyy-mm-dd” to “yyyy-mm-dd” retrieves the bookings that have been created in a specific period (from..to..). This period can last at most 10 days.
  • type services + from “yyyy-mm-dd” to “yyyy-mm-dd” retrieves the bookings with checkin and checkout in a specific period (from..to..). This period can last at most 10 days.
  • type lastmodified + from “yyyy-mm-dd” to “yyyy-mm-dd” retrieves the bookings that have been modified the last time in a specific period (from..to..). This period can last at most 10 days.
  • type customer + code retrieves the bookings created by a specific customer code.
  • type dossier + number retrieves the bookings that are associated to a specific dossier.
<?xml version="1.0" encoding="UTF-8"?>
<envelope>
    <header>
    <actor>test</actor>
        <user>test</user>
        <password>test</password>
        <version>1.0.0</version>
        <timestamp>20200501170000</timestamp>
    </header>
    <query type="listall" product="bookings" />
        <filters>
        <filter type="booking" from="2009-03-27" to="2009-04-01"/>
        <filter type="services" from="" to=""/>
        <filter type="lastmodified" from="" to=""/>
        <filter type="customer" code=""/>
        <filter type="dossier" number=""/>
    </filters>
    </query>
</envelope>