-
Notifications
You must be signed in to change notification settings - Fork 0
[PUT] 카드 메모 수정
Choong Beom Cho edited this page Jul 15, 2020
·
8 revisions
메소드 | 경로 | 설명 |
---|---|---|
PUT | /card/memo | 유저가 입력한 메모를 수정한다. |
{
"user_idx": INT,
"card_idx": INT,
"memo_content": STRING
}
< Success >
{
"status": 200,
"success": true,
"message": "카드 메모 수정이 성공적으로 이루어졌습니다.",
}
< Fail >
- 통신 실패
{
"status": 400,
"success": false,
"message": "카드 메모 수정에 실패했습니다."
}