PHP code example of productflowbv / kaufland-php-client

1. Go to this page and download the library: Download productflowbv/kaufland-php-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

productflowbv / kaufland-php-client example snippets


$kaufland = new \ProductFlow\KauflandPhpClient\Kaufland();
$kaufland->setClientKey($clientkey);
$kaufland->setSecretKey($secretkey);

$order_lists = $kaufland->orderUnit()->list();

composer