-
Notifications
You must be signed in to change notification settings - Fork 2
Goals
Maxwell Carter edited this page Jun 22, 2017
·
1 revision
Retrieve a list of all goals.
GET https://smart-classroom-ece452.mybluemix.net/api/v1/goals
[
{
"_id": "594ad28add08c70029b4223a",
"title": "Shoot an Arrow",
"creationDate": "2017-06-21T00:00:00.000Z",
"startDate": "2017-06-21T00:00:00.000Z",
"endDate": "2017-06-22T00:00:00.000Z",
"__v": 0,
"weight": 0.1,
"type": "goal",
"description": "Shoot an arrow using a bow"
}
]
Retrieves details of a particular goal.
GET https://smart-classroom-ece452.mybluemix.net/api/v1/goals/594ad28add08c70029b4223a
{
"_id": "594ad28add08c70029b4223a",
"title": "Shoot an Arrow",
"creationDate": "2017-06-21T00:00:00.000Z",
"startDate": "2017-06-21T00:00:00.000Z",
"endDate": "2017-06-22T00:00:00.000Z",
"__v": 0,
"weight": 0.1,
"type": "goal",
"description": "Shoot an arrow using a bow"
}
Creates a goal
POST https://smart-classroom-ece452.mybluemix.net/api/v1/goals
{
"title": "Shoot an Arrow",
"description": "Shoot an arrow using a bow",
"type": "goal",
"creationDate": "06/21/17",
"startDate": "06/21/17",
"endDate": "06/22/17",
"weight": 0.1
}
The created goal
{
"_id": "594ad28add08c70029b4223a",
"title": "Shoot an Arrow",
"creationDate": "2017-06-21T00:00:00.000Z",
"startDate": "2017-06-21T00:00:00.000Z",
"endDate": "2017-06-22T00:00:00.000Z",
"__v": 0,
"weight": 0.1,
"type": "goal",
"description": "Shoot an arrow using a bow"
}
Deletes a goal
DELETE https://smart-classroom-ece452.mybluemix.net/api/v1/goals/594ad28add08c70029b4223a
The deleted goal.
{
"_id": "594ad28add08c70029b4223a",
"title": "Shoot an Arrow",
"creationDate": "2017-06-21T00:00:00.000Z",
"startDate": "2017-06-21T00:00:00.000Z",
"endDate": "2017-06-22T00:00:00.000Z",
"__v": 0,
"weight": 0.1,
"type": "goal",
"description": "Shoot an arrow using a bow"
}