Ho provato a chiamare [POST] /carts/mine/items
, intestazioni con corretta portatore, e il corpo:Come aggiungere un elemento ad un preventivo/carrello tramite API su Magento2
{
"cart_item": 1,
"sku": "MY_SKU",
"qty": 1
}
e ottengo la risposta folowing:
{
"message": "Invalid value of \"%value\" provided for the %fieldName field.",
"parameters": {
"fieldName": "qty",
"value": null
}
}
Due cose, non capisco cosa mettere in cart_item (ma è obbligatorio) e non so perché continua a dirmi che qty è nullo?
Come passare più oggetto con una chiamata API? –