Hallo,
ich versuche ein product_cross_selling per API call anzulegen.
Ich bekomme aber diese Meldung zurück:
Exception Object
(
[message:protected] => API-Server-Error Array
(
[success] =>
[data] => Array
(
[upsert-product_cross_selling] => Array
(
[result] => Array
(
[0] => Array
(
[entities] => Array
(
)
[errors] => Array
(
[0] => Array
(
[code] => c1051bb4-d103-4f74-8988-acbcafc7fdc3
[status] => 400
[detail] => Dieser Wert sollte nicht leer sein.
[template] => This value should not be blank.
[meta] => Array
(
[parameters] => Array
(
[{{ value }}] => null
)
)
Was hat das zu bedeuten? Dieser Wert sollte nicht leer sein.
Ist damit {{value}} gemeint?
Was sollte da drin stehen?
Ich mache den Aufruf per Datei mit einer Payload.
Für die Payload gebe ich folgende Parameter mit:
$data = []; $data['id'] = $crossSellingUuid; $data['type'] = 'productList'; $data['position'] = 1; $data['sort\_by'] = 'name'; $data['sort\_direction'] = 'ASC'; $payloads[] = $data;