-
Notifications
You must be signed in to change notification settings - Fork 5
LABEL API
shkilo edited this page Nov 5, 2020
·
1 revision
| METHOD | URL | DESCRIPITION |
|---|---|---|
| GET | /api/label | label list 가져오기 |
| POST | /api/label | label 생성 |
| PATCH | /api/label/:labelId | label 수정 |
| DELETE | /api/label/:labelId | label 삭제 |
GET /api/label[
{
"id": 1,
"title": "iOS",
"description": null,
"color": "red",
"createdAt": "2020-11-02T16:40:56.000Z",
"updatedAt": "2020-11-02T16:40:56.000Z"
},
{
"id": 2,
"title": "web",
"description": null,
"color": "blue",
"createdAt": "2020-11-02T16:40:56.000Z",
"updatedAt": "2020-11-02T16:40:56.000Z"
}
]
POST /api/label| NAME | TYPE | DESCRIPITION | REQUIRED |
|---|---|---|---|
| title | String | 라벨 제목 | O |
| description | String | 라벨 설명 | X |
| color | String | 라벨 색깔 | O |
{
"title": "title goes here",
"description": "description goes here",
"color": "color goes here"
}
{
"id": 6,
"title": "title goes here",
"description": "description goes here",
"color": "color goes here",
"updatedAt": "2020-11-02T14:38:40.127Z",
"createdAt": "2020-11-02T14:38:40.127Z"
}
PATCH /api/label/:labelId| NAME | TYPE | DESCRIPITION | REQUIRED |
|---|---|---|---|
| title | String | 라벨 제목 | X |
| description | String | 라벨 설명 | X |
| color | String | 라벨 색깔 | X |
{
"title": "updated"
}
{
"numOfaffectedRows": 1
}
DELETE /api/label/:labelId{
"numOfaffectedRows": 1
}