Location details
GET {{kroger-baseUrl}}/locations/:locationId
Provides access to the details of a specific location by using the locationId
.
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
RESPONSES
status OK
{
"data": {
"address": {
"addressLine1": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"county": "<string>",
"state": "<string>",
"zipCode": "<string>"
},
"chain": "<string>",
"phone": "<string>",
"departments": [
{
"departmentId": "<string>",
"name": "<string>",
"phone": "<string>",
"hours": {
"Open24": "<boolean>",
"monday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"tuesday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"wednesday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"thursday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"friday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"saturday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"sunday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
}
}
},
{
"departmentId": "<string>",
"name": "<string>",
"phone": "<string>",
"hours": {
"Open24": "<boolean>",
"monday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"tuesday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"wednesday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"thursday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"friday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"saturday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
},
"sunday": {
"open": "<string>",
"close": "<string>",
"open24": "<boolean>"
}
}
}
],
"geolocation": {
"latLng": "<string>",
"latitude": "<number>" Curl curl -X GET 'kroger-baseUrl/locations/:locationId' ENDPOINTS |