-
Notifications
You must be signed in to change notification settings - Fork 4
[PUT] 닉네임 수정_승희
SeungHee Yang edited this page Jan 1, 2020
·
2 revisions
승희
메소드 | 경로 | 짧은 설명 |
---|---|---|
PUT | /users/nickname | 닉네임 수정 |
Application: token
key | 설명 | 타입 | 비고 |
---|---|---|---|
user_name | user의 닉네임 | String |
{
"user_name" : "송이버섯"
}
{
"status": 200,
"message": "회원 정보 수정 성공",
}
{
"status": 403,
"message": "회원 정보 수정 실패",
}
{
"status": 401,
"message": "인증 실패" // 본인이 주장하는 사용자와 같은 사용자인지 확인
}
{
"status": 403,
"message": "인가 실패" // 해당클라이언트에게 허가된 작업 X
}
{
"status": 600,
"message": "데이터베이스 에러"
}
{
"status": 500,
"message": "서버 내부 에러"
}
.