Simple RESTful interface on Bluemix to create, read, update or delete bears.
A bear looks like this:
{
"_id": "56427fd15e426984096bdaa9",
"__v": 0,
"name": "Coyle's Bear",
"age": 23,
"occupation": "painter"
}
http://bluemixrest.mybluemix.net/bears
http://bluemixrest.mybluemix.net/bears/:bear_id
http://bluemixrest.mybluemix.net/bears
with the POST parameters:
name = Hector's Bear
age = 23
occupation = Gamer
http://bluemixrest.mybluemix.net/bears/:bear_id
with the PUT parameters to be updated:
name = Hector's Bear
age = 23
occupation = Gamer