Get Store Run in API Explorer
Ask AI
A store represents a unique ordering experience from a specific location.
GET
/commerce/{accountId}/stores/{storeId}
curl \
--request GET 'https://api.staging.deliverect.com/commerce/{accountId}/stores/{storeId}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "65eee6a9984a1bc1b9637c59",
"name": "Store Name",
"status": "open",
"address": {
"city": "Ghent",
"source": "1 Main street D13 R2P6 Ghent VOV",
"country": "BE",
"coordinates": [
3.73398891371018,
51.0311233802278
],
"stateOrProvince": "VOV"
},
"contact": {
"email": "john.doe@acme.com",
"lastName": "Doe",
"firstName": "John",
"phoneNumber": "+32411111111"
},
"currency": "EUR",
"distance": 1235,
"openingHours": {
"timezone": "Europe/Brussels",
"dayTimeRanges": [
{
"endTime": "23:59:00",
"dayOfWeek": 1,
"startTime": "00:00:00"
},
{
"endTime": "23:59:00",
"dayOfWeek": 2,
"startTime": "00:00:00"
},
{
"endTime": "23:59:00",
"dayOfWeek": 3,
"startTime": "00:00:00"
},
{
"endTime": "23:59:00",
"dayOfWeek": 4,
"startTime": "00:00:00"
},
{
"endTime": "23:59:00",
"dayOfWeek": 5,
"startTime": "00:00:00"
},
{
"endTime": "23:59:00",
"dayOfWeek": 6,
"startTime": "00:00:00"
},
{
"endTime": "23:59:00",
"dayOfWeek": 7,
"startTime": "00:00:00"
}
]
},
"taxExclusive": false,
"channelLinkId": "65eee6a9984a1bc1b9637c59",
"fulfillmentTypes": [
"pickup",
"delivery",
"eatIn"
]
}
Response examples (400)
{}