Search stores/users/{user_id}/stores/searchFind all the information of the stores generated through specific filters.
GET
Request's parameters
user_idstring
Localization: pathUser IdREQUIRED
external_idstring
Localization: queryUnique identifier of the store defined by integrator systemREQUIRED
Response parameters
paging
Localization: bodypagingobject
results
Localization: bodyresultsarray
Request
curl
curl -X GET \
'https://api.mercadopago.com/users/{user_id}/stores/search?external_id=12123adfasdf123u4u' \
-H 'Authorization: Bearer ACCESS_TOKEN_ENV'
Answer
json
[
{
"paging": {
"total": 2,
"offset": 0,
"limit": 30
},
"results": [
{
"id": 30163646,
"name": "Sucursal Instore",
"date_creation": "2019-09-09T09:25:56.000Z",
"business_hours": {
"monday": [
{
"open": "08:00",
"close": "13:00"
}
],
"tuesday": [
{
"open": "08:00",
"close": "18:00"
}
],
"wednesday": [
{
"open": "07:00",
"close": "10:00"
}
]
},
"location": {
"address_line": "Caseros 3039 Belgrano Capital Federal Argentina",
"reference": "3er Piso",
"latitude": -32.8897322,
"longitude": -68.8443275
},
"external_id": "SUC001"
}
]
}
]
Errors
400bad_request
INVALID_USER_ID
INVALID_OFFSET
INVALID_LIMIT
INVALID_EXTERNAL_ID
Was this information helpful?