I have tried calling [POST] /carts/mine/items
, headers with correct bearer, and body:
{
"cart_item": 1,
"sku": "MY_SKU",
"qty": 1
}
and I get the folowing response:
{
"message": "Invalid value of \"%value\" provided for the %fieldName field.",
"parameters": {
"fieldName": "qty",
"value": null
}
}
Two things, I do not understand what to put in cart_item (but it is required) and I do not why it keeps telling me qty is null?