- 
Fetch a list of items
GET http://localhost:3002/items 
- 
Create a new item
POST http://localhost:3002/items 
- 
Verify new item exists
GET http://localhost:3002/items/{{itemId}} 
- 
Add item to cart
POST http://localhost:3002/{{memberId}}/cart 
- 
Delete item from cart
DELETE http://localhost:3002/{{memberId}}/cart/{{itemId}} 
- 
Verify item removed
GET http://localhost:3002/{{memberId}}/cart