Updatebedingt musste ich von API V1 auf V3 umstellen.
Ein search/product wie
stdClass Object ( [total-count-mode] =\> 1 [limit] =\> 500 [page] =\> 1 [includes] =\> stdClass Object ( [product] =\> Array ( [0] =\> productNumber [1] =\> id ) ) )
bring nun keine Daten mehr zurück, in V1 ging das ohne Probleme.
Was funktioniert ist jeweils eine association mitzugeben:
stdClass Object ( [total-count-mode] =\> 1 [limit] =\> 500 [page] =\> 1 [includes] =\> stdClass Object ( [product] =\> Array ( [0] =\> productNumber [1] =\> id ) ) [associations] =\> stdClass Object ( [cover] =\> Array ( [0] =\> total-count-mode [1] =\> 1 ) ) )
Ich will lediglich eine Liste von id / productNumber. Gibt es hierzu einen besseren Ansatz?