PHP code example of afosto / postnl-ecs

1. Go to this page and download the library: Download afosto/postnl-ecs 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/ */

    

afosto / postnl-ecs example snippets


$config = [
    'host'       => 'sftp-postnlint-accp.xs4.mendix.net',
    'port'       => 22,
    'username'   => '',
    'privateKey' => '',
    'root'       => '/home/{username}/' 
];

App::init($config);

$product = new Product();
$product->sku = 'ART-1-TEST';
$product->shortDescription = 'Test article';
$product->ean = '1000000000016';
$product->height = $product->weight = $product->depth = $product->width = 1;

$message = new ProductMessage(1);

$message->addMessagePart($product);
$message->addMessagePart([$product2, $product3]);

$message->send();

$message->show();
$message->download();

$stockListUpdates = new StockList();

foreach ($stockListUpdates->getUpdates() as $model) {
    //Do something with the message
    $message = [
        'sku'   => $model->sku, 
        'count' => $model->count,
    ];
}

$stockListUpdates->markAsRead();