Item update - Catalog - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Item update

PUT

https://api.mercadopago.com/proximity/integration/v1/catalog/stores/{external_store_id}/items/{external_item_id}
Endpoint to update an item status.
Request's parameters
PATH
external_store_id
string

REQUIRED

External_id of the store that should have the item's status changed.
external_item_id
string

REQUIRED

External_id of the item that should have the status changed.
BODY
status
string
Status referring to the item that will be updated.
active: Active the item.
paused: Pause the item.
Response parameters
status
number
Status of the item updated.
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"
}