Skip to content

프로필 수정

famer9716 edited this page Jul 17, 2020 · 6 revisions
메소드 경로 설명
POST /user/modify 프로필 수정
profile modify

Request Header

{
    "Content-Type" : "application/json",
    "token" : "발급받은 토큰"
}

Request Body

{
    "nickname" : "test",
    "gender" : 1,
    "level" : 2,
    "log_visibility" : true,
    "image" : 5
}
  • nickname : 사용할 nickname
  • gender : (1 : 남자, 2 : 여자)
  • level : (1 : 초급, 2 : 중급 : 3, 고급)
  • log_visibility : 프로필 공개 여부
  • image : 이모지 image flag

Response Body

👍 success

{
    "status": 200,
    "success": true,
    "message": "profile modify success",
    "result": {
        "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6InRlc3QxMyIsInVzZXJfaWR4IjoxMTksIm5pY2tuYW1lIjoi7LWc67KE65SUIiwiZ2VuZGVyIjoyLCJsZXZlbCI6MywibG9nX3Zpc2liaWxpdHkiOjEsImltYWdlIjoxLCJpYXQiOjE1OTQ5NTQ0NDYsImV4cCI6MTU5NDk5MDQ0Nn0._0aQmOHacLkMxFgzNFrxBllvtp6MgkufOSFjk3rQkQY"
    }
}

👎 fail

{
    "status": 400,
    "success" : false,
    "message": "만료된 인증 토큰 입니다.",
    "description": "expired token"
}

Clone this wiki locally