Skip to content
Maxwell Carter edited this page Jun 22, 2017 · 1 revision

Goals

GET

/goals

Retrieve a list of all goals.

Request

GET https://smart-classroom-ece452.mybluemix.net/api/v1/goals

Response

[
    {
        "_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"
    }
]

/goals/:id

Retrieves details of a particular goal.

Request

GET https://smart-classroom-ece452.mybluemix.net/api/v1/goals/594ad28add08c70029b4223a

Response

{
    "_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"
}

POST

/goals

Creates a goal

Request

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
}

Response

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"
}

DELETE

/goals/:id

Deletes a goal

Request

DELETE https://smart-classroom-ece452.mybluemix.net/api/v1/goals/594ad28add08c70029b4223a

Response

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"
}

Clone this wiki locally