Home
Documentation
Resources
Partners
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

Partners

Discover our program for agencies or developers that offer integration services and sellers who want to hire them.

Community

Get the latest news, ask others for help and share your knowledge.

Item update - Catalog - Mercado Pago Developers
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"
}