Skip to content

userUpdate

Hyun-juhee edited this page Jan 1, 2020 · 1 revision

프로필 수정하기


[PUT] ~/users/


Request-Header

메소드 파라미터 설명
Content-Type application/json

Request-Body

이름 type 설명
email string 이메일 주소
nickname string 닉네임
password string 비밀번호
img string 프로필 사진

Response - body

SUCCESS
{
    "status": 200,
    "message": "프로필수정 성공",
    "data": [
        1
    ],
    "success": true
}
FAIL 1 : 필요한 값이 하나이상 없을때
{
    "status": 400,
    "message": "필요한 값이 없습니다, password",
    "success": false
}
FAIL 2 : 서버 내부 오류
{
    "json": {
        "status": 500,
        "success": false
    }
}
Clone this wiki locally