Request

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

  • type issued + from “yyyy-mm-dd” to “yyyy-mm-dd” retrieves the invoices 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 invoices of bookings that have been created in a specific period (from..to..). This period can last at most 10 days.
  • type customer + code retrieves the invoices for a specific customer code.
    <?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="invoice" />
        <filters>
        <filter type="issued" from="" to=""/>
        <filter type="services" from="" to=""/>
        <filter type="customer" code=""/>
    </filters>
    </query>
    </envelope>