-
Notifications
You must be signed in to change notification settings - Fork 0
[setting] 닉네임 변경
realwhyjay edited this page Jul 14, 2021
·
8 revisions
메소드 | 경로 | 뷰 | 설명 |
---|---|---|---|
POST | /setting/nickname | setting | 닉네임 변경 |
[여기에는 해당 뷰 사진 올라감]
{
"Content-Type":"application/json"
"token":"머시기뭐시기"
}
{
"nickname" : "@꿍@루@"
}
- 현재 닉네임과 동일한 경우
{
"status": 200,
"success": true,
"message": "현재와 같은 닉네임"
}
* 닉네임 변경 성공
```JSON
{
"status": 200,
"success": true,
"message": "닉네임 수정 완료",
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "서버 내부 에러"
}