PHP code example of loevgaard / dandomain-api
1. Go to this page and download the library: Download loevgaard/dandomain-api 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/ */
loevgaard / dandomain-api example snippets
use Loevgaard\Dandomain\Api\Api;
$api = new Api('https://www.your-shop.dk', 'insert api key');
// Get modified products
$dateStart = \DateTime::createFromFormat('Y-m-d', '2018-01-01');
$dateEnd = new \DateTime();
$modifiedProductCount = $api->productData->countByModifiedInterval($dateStart, $dateEnd);
$pageSize = 100;
$pages = ceil($modifiedProductCount / $pageSize);
for($page = 1; $page <= $pages; $page++) {
$products = $api->productData->getDataProductsInModifiedInterval($dateStart, $dateEnd, $page, $pageSize);
}