Update external IDhttps://api.mercadopago.com/proximity-integration/stores/{StoreID}/external_id
This endpoint updates the External ID value of a store. The External ID value is an optional field.
PUT
Request parameters
Header
Authorization
Access Token obtained through the developer panel. Must be sent in all requests.string
REQUIRED
Path
StoreID
ID of the store.string
REQUIRED
Body
external_id
Value of the external ID which will be linked to the store.string
Response parameters
id
ID that identifies the store.number
user_id
ID that identifies the user who owns the store.number
description
Name of the store.string
business_hours
List of store opening hours. Each attribute of the object will be represented by a day of the week.object
Errors
400Error
400
Missing_Parameter - Invalid store id
401Error
401
Unauthorized - Access Token is invalid
403Error
403
Forbidden - User cannot access this resource
424Error
424
Not Found - Failed to get some information of the store
500Error
500
Internal server error
Provide valid data in the request parameters before executing.
Request
curl -X PUT \
'https://api.mercadopago.com/proximity-integration/stores/{StoreID}/external_id'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-1*********685765-12*********1b4332e5c*********e077d7679*********664' \
-d '{
"external_id": "9320001PC21"
}'Response
{
"id": 41517088,
"user_id": 813887163,
"description": "Doc's grocery store",
"business_hours": {
"monday": [
{
"open": "8:00",
"close": "15:00"
}
],
"tuesday": [
{
"open": "8:00",
"close": "15:00"
}
],
"wendsday": [
{
"open": "8:00",
"close": "15:00"
}
],
"thursday": [
{
"open": "8:00",
"close": "15:00"
}
],
"friday": [
{
"open": "8:00",
"close": "15:00"
}
]
},
"location": {
"address_line": "Viaduto Arapuã - Saude, São Paulo - SP, 04307-070, Brasil",
"reference": "Next to a bakery",
"latitude": -23.630159633405057,
"longitude": -46.64532809999999
},
"external_id": "9320001PC21"
}