Skip to content

✔프로필 수정

alia edited this page Jul 8, 2020 · 10 revisions
메소드 경로 설명
PUT /profile/edit/:profileIdx 프로필 수정

수정


Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "프로필 수정 성공",
    "data": [
        {
            "profileImg": "image",
            "profileName": "reProfile",
            "profileGender": "female",
            "profileNeutral": "true",
            "profileWeight": 4.5,
            "profileInfo": "good girl",
            "follower": 10,
            "following": 3
        }
    ]
}

< Fail >

  • 데이터 반환 에러
{
    "status": 404,
    "success": false,
    "message": "프로필 수정 실패"
}