Which documentation are you looking for?
Do not know how to start integrating?
Check the first stepsItem 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.
Did you find this information useful?
Yes
No
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-8971*********918-01191*********5874530a4*********4799fdf-1*********' \
-d '{
"status": "active"
}'
Sample answer
{
"status": "active"
}