hitmeister / api-sdk-php

Kaufland.de Onlineshop (former real.de and Hitmeister) API SDK for PHP
https://www.real.de/api/v1/
MIT License
24 stars 29 forks source link

Kein Ergebnis $client->orderUnits()->find(); #102

Closed webgreat closed 3 years ago

webgreat commented 3 years ago

orderUnits()->find(); gibt keine Daten zurück. Wärend categories()->find('xyz'); ein Ergebnis gibt.

Ohne SDK über "/order-units/seller/" bekomme ich Daten.

Hat Jemand gleiches Problem?

m074554n commented 3 years ago

Hi @webgreat, you can loop over the $client->orderUnits()->find() and it will work fine, try something like:

$orderUnits = $client->orderUnits()->find();

foreach ($orderUnits as $orderUnit){
    // TODO: your code here
}