Delete store - Physical stores - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Delete store

DELETE

https://api.mercadopago.com/users/{user_id}/stores/{id}
Delete a physical shop whenever you need it with the ID of the store.
Request's parameters
PATH
user_id
string

REQUIRED

User Id
id
string

REQUIRED

Store's Id
Response parameters
store
number
user
number
Errors

400Error

INVALID_USER_ID

USER_ID must be number.

INVALID_STORE_ID

STORE_ID must be number.

UNKNOWN_FIELD

Unknow field.

Request
curl -X DELETE \
    'https://api.mercadopago.com/users/{user_id}/stores/{id}'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-2151*********762-03031*********750b665b7*********4dac477-1*********' \
    
Sample answer
{
  "store": 30148503,
  "user": 329653108
}