loevgaard/dandomain-api

Dandomain API Wrapper

v3.0.0 2021-01-06 11:35 UTC

README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score

This is a PHP wrapper for the Dandomain API. Internally it uses Guzzle to send requests.

Installation

composer require loevgaard/dandomain-api 

Usage

<?php
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);
}