Logo
The Kroger Co.'s Public API Documentation

User carts list

GET {{kroger-baseUrl}}/carts

Provides access to return a list of all carts that belong to an authenticated customer.

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>" }, { "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": {} }



Curl
curl -X GET 'kroger-baseUrl/carts'

ENDPOINTS