5
Year
Kun Deng edited this page 2019-10-13 11:19:47 -04:00

Retrieve year metadata

URI: https://icarus-demo.com/api/v1/year/2
Method: Get
Content type: application/json
Authorization: Bearer token
Response body:

{
    "id" : 2,
    "year" : 2017
}

Retrieve all year metadata

URI: https://icarus-demo.com/api/v1/year
Method: Get
Content type: application/json
Authorization: Bearer token
Response body:

[
    {
        "id" : 1,
        "year" : 2012
    },
    {
        "id" : 2,
        "year" : 2017
    },
    {
        "id" : 3,
        "year" : 1995
    }
]