Cart item history¶
With below endpoints you can access your cart items without having to care about cart uuid.
GET /cart-item-history¶
List of cart items, sorted from newest to oldest.
- Allowed query parameters:
- page - simple pagination, starting from 1
Curl example:
curl -XGET https://api.url/cart-item-history?page=2 -H 'Authorization: Bearer ACCESS_TOKEN'
GET /cart-item-history/{uuid}¶
This endpoint allows you to check cart items details.
curl -XGET https://api.url/cart-item-history/410069a7-c69c-4c2f-a5f3-002bc394f522 -H 'Authorization: Bearer ACCESS_TOKEN'