Hallo zusammen,
wir rufen über die Admin-API Produktinformationen ab. Grundsätzlich funktioniert das.
Die Produkte haben jedoch Erweiterte Preise, wie kann ich diese via associations abrufen?
Wir arbeiten mit GuzzleHtml und so sieht unsere Abfrage aus:
$response = $client->request('POST', '/api/search/product', [
'timeout' => 20,
'headers' => [
'Authorization' => $token->token_type . ' ' . $token->access_token,
'Accept' => 'application/json',
],
'form_params' => [
'associations' => [
'prices' => [],
"options" => [
"associations" => [
"productOptions" => [],
"group" => []
]
]
],
'filter'=> [
[
'type' => 'multi',
'operator' => 'and',
'queries' => [
[
'type' => 'contains',
'field' => 'product.manufacturerNumber',
'value' => 'UK'
],
[
'type' => 'contains',
'field' => 'product.tagIds',
'value' => '018f0c353d2e710b9ca2eb309f1312f5'
]
]
]
],
'includes' => [
'product' => ['versionId', 'name', 'manufacturerNumber', 'productNumber', 'stock', 'availableStock', 'purchasePrices', 'calculatedPrice', 'active', 'tagIds', 'tags'],
'calculated_price' => [ 'unitPrice', 'quantity' ]
],
],
]);
Die Associations sind hier wahrscheinlich falsch. Weiss jemand, welche hier abgefragt werden müssen?
Gibt es irgendwo eine Übersicht über die möglichen Associations?
vielen Dank im Voraus für eure Bemühungen!