Daft.ie API documentation and reference

Versioning

There are presently 3 versions of the API available: V1, V2 and V3. Each version is a superset of the previous one, so converting from V1 to V2 covers the V1→V2 step and the V2→V3 changes are additive. What version you use is determined by the WSDL file you load at the very start of your script. For example, to use V3 in a PHP5 script:


<?php

    $DaftAPI 
= new SoapClient("http://api.daft.ie/v3/wsdl.xml");
    
?>

It is recommended that you use V3 for all new applications.

Documentation