Daft.ie API documentation and reference

Versioning

There are presently 2 versions of the API available, namely V1 and V2. V1 is simply a subset of V2 and all functionality in V1 is available in V2, thus converting from V1 to V2 should be fairly trivial. What version you use is determined by the WSDL file you load at the very start of your script. For example, to use V2 in a PHP5 script:


<?php

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

It is recommended that you use V2 for all future applications.

Documentation