sdk-php-shop icon indicating copy to clipboard operation
sdk-php-shop copied to clipboard

Mirakl PHP SDK for sellers

Results 14 sdk-php-shop issues
Sort by recently updated
recently updated
newest added

I use the following parameters when pulling orders from OR11 (Mirakl\MMP\Shop\Request\Order\Get\GetOrdersRequest()). ``` $request->setPaginate(true); $request->setMax($maxPerPage); $request->setOffset($offset); $request->sortAsc(); $request->setCustomerDebited(true); $request->setStartDate($lastOrderDate); ``` Out of 44,000 orders, we had 4 all on the same...

Hi, We always get the error "Invalide Page Token" when we try to seek through results ``` $request = new \Mirakl\MMP\Shop\Request\Payment\Transaction\TransactionLineRequest(); $request->setDateCreatedFrom(new \Datetime('-1 Month')); $result = $api->getTransactionLine($request); $request = new...

[The doc for this endpoint](https://help.mirakl.net/help/api-doc/seller/mps.html#SOR11) says it has token-based seek pagination available, but this library only allows offset-based pagination for `$client->getOrders()`. Is there a way to implement that? I tried...

Once the composer is installed with `composer install --classmap-authoritative`, there is error `Class "Mirakl\Core\Domain\MiraklObject" not found ` (there are errors for each class that is in composer.json in exclude). Code...