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