label 불러오기 - boostcamp-2020/IssueTracker-14 GitHub Wiki

Label 불러오기

메소드 경로 짧은 설명
GET api/label Label 목록 불러오기

Response

status: 201

{
   message: 'success',
   labels: [
        {
            "id": 1,
            "title": "test1",
            "color": "#111111",
            "description": "testeste",
            "createdAt": "2020-11-02T12:29:41.000Z",
            "updatedAt": "2020-11-02T12:29:41.000Z"
        },
        {
            "id": 2,
            "title": "test2",
            "color": "#123456",
            "description": "testestewww",
            "createdAt": "2020-11-02T12:29:41.000Z",
            "updatedAt": "2020-11-02T12:29:41.000Z"
        }
   ] 
}