Cart by ID
GET {{kroger-baseUrl}}/carts/:id
Provides access to an authenticated customer's cart by ID.
Note: the customer must be authenticated using the OAuth2 Authorization
Code grant type.
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
RESPONSES
status OK
{
"data": {
"id": "<string>",
"createdDate": "<string>",
"items": [
{
"allowSubstitutes": "<boolean>",
"createdDate": "<string>",
"quantity": "<integer>",
"specialInstructions": "<string>",
"upc": "<string>",
"description": "<string>",
"modality": "<string>"
},
{
"allowSubstitutes": "<boolean>",
"createdDate": "<string>",
"quantity": "<integer>",
"specialInstructions": "<string>",
"upc": "<string>",
"description": "<string>",
"modality": "<string>"
}
],
"name": "<string>"
},
"meta": {}
} |
ENDPOINTS