Item update - Catalog - Mercado Pago Developers
Item update

PUT

/proximity/integration/v1/catalog/stores/{external_store_id}/items/{external_item_id}
Endpoint to update an item status.
Request's parameters
external_store_id

REQUIRED

string
Localization: pathExternal_id of the store that should have the item's status changed.
external_item_id

REQUIRED

string
Localization: pathExternal_id of the item that should have the status changed.
status
string
Localization: bodyStatus referring to the item that will be updated.
active: Active the item.
paused: Pause the item.
Response parameters
status
number
Localization: bodyStatus of the item updated.
Request
curl
curl -X PUT \
      'https://api.mercadopago.com/proximity/integration/v1/catalog/stores/{external_store_id}/items/{external_item_id}' \
       -H 'Authorization: Bearer YOUR_ACCESS_TOKEN \
       -H 'Content-Type: application/json' \ 
      -d '{
  "status": "active"
}'
Answer
json
{
  "status": "active"
}
Errors
400bad_request
error Publication error caused by some inconsistency in the fields.