-
Notifications
You must be signed in to change notification settings - Fork 1
Home
akire edited this page Feb 4, 2012
·
4 revisions
http://groceries-server.herokuapp.com
-
POST /list
- Creates new list and returns the new listId -
POST /list/<listId>
- Adds item in message entity to list -
DELETE /list/<listId>
- Removes all items on list -
GET /list/<listId>
- Returns all items on the list as a json object -
DELETE /list/<listId>/<itemToRemove>
- RemovesitemToRemove
from list
{
"items":[
"bread",
"milk",
"lollies"
]
}