-
Notifications
You must be signed in to change notification settings - Fork 4
마이페이지수정
KIMSOYEON edited this page Jan 9, 2019
·
6 revisions
소연
메소드 | 경로 | 설명 |
---|---|---|
PUT | /user/mypage | 마이페이지 수정 |
Content-Type: multipart/form-data
Authorization: token
{
"user_name" : "gg",
"user_password" : "aaaaa",
"user_phone" : "111111",
"user_status_comment" : "반가워요",
"user_img" : "sdhfoiw.jpg"
}
{
"status": 200,
"message": "회원 정보 수정 성공",
"data": {
"user_id": "coco",
"user_name": "kim",
"user_phone": "01011111",
"user_img_url": "http://s3.ap-northeast-2.amazonaws.com/project-sopt/42c8d1171e3a4bffbd28d1ae064d3d42.jpg",
"user_status_comment": "happy",
"auth": true
}
}
{
"status": 600,
"message": "데이터베이스 에러",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}