Batch translation mit REST api

 Können einige erklären, wie man Übersetzungen (in diesem Fall <u>configuratorGroup</u>) im Batchmodus über die REST API ausführt? Basierend auf der Dokumentation würde ich denken, dass das folgende Snippet korrekt ist. Leider nicht

 

Eingabe für den Rest api:

 $shopware-\>put('translations/' , $batch);

 Inhalt von $batch : 

 Array ( [0] =\> Array ( [type] =\> configuratorgroup [shopId] =\> 2 [data] =\> Array ( [name] =\> Scale ) [id] =\> 34 ) [1] =\> Array ( [type] =\> configuratorgroup [shopId] =\> 3 [data] =\> Array ( [name] =\> Indication ) [id] =\> 34 ) [2] =\> Array ( [type] =\> configuratorgroup [shopId] =\> 5 [data] =\> Array ( [name] =\> Zakres ) [id] =\> 34 ) )

Habe das gleiche Problem…

Laut der Doku (REST API - Examples using the translation resource) sollte es gehen, aber wenn ich ein Array von Translations übergebe, wird nichts mehr aktualisiert.

Hi codiverse,

I had to replace [‚id‘] with [‚key‘]

After that, everything works like a charm.