I need to add or remove the Free Shipping option/flag to a Mercadolivre product using the REST API, but I can´t figure how to do it. I read the whole API documentation and found nothing on how to set this flag. Any one has this figured out?
I have tried so far:
PUT request to https://api.mercadolibre.com/items/MLBXXXXXXXXXX with:
{"shipping": {"free_shipping": false}}
Result: no error but flag doesn´t change.
PUT request to https://api.mercadolibre.com/items/MLBXXXXXXXXXX/shipping with:
{
"marketplace": {"free_shipping": false},
"mshops": {"free_shipping": false}
}
Result: This method works for changing 'mshops' free shipping option, but not for the Mercadolivre website 'marketplace'