label 수정 - boostcamp-2020/IssueTracker-14 GitHub Wiki
label 수정
메소드 | 경로 | 짧은 설명 |
---|---|---|
PUT | api/label/:labelid | label 수정 |
Request
params
{
labelid: 1
}
body
{
title: 'Backend 1',
description: '백엔드 수정'
color: '#123456'
}
Response
status: 200
{
message: 'success'
}