Item update
PUT
Products that use it:
Request's parameters
PATH
external_store_id
External_id of the store that should have the item's status changed.string
REQUIRED
external_item_id
External_id of the item that should have the status changed.string
REQUIRED
BODY
status
Status referring to the item that will be updated.string
active: Active the item.
paused: Pause the item.
Response parameters
status
Status of the item updated.number
Errors
400Description of the error.
error
Publication error caused by some inconsistency in the fields.
Request
curl -X PUT \
'https://api.mercadopago.com/proximity/integration/v1/catalog/stores/{external_store_id}/items/{external_item_id}'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TEST-4599*********755-11221*********d497ae962*********ecf8d85-1*********' \
-d '{
"status": "active"
}'
Sample answer
{
"status": "active"
}