-
Notifications
You must be signed in to change notification settings - Fork 0
[PUT] 프로필 수정
MoonAyoung edited this page Jun 19, 2021
·
3 revisions
메소드 | 경로 | 설명 |
---|---|---|
PUT | /api/v2/profile | 프로필 수정 |
-
프로필 편집 화면
-
소셜 회원가입 후, 프로필 업데이트 (닉네임, 자기소개)
{
"Content-Type": "application/json",
"accessToken": "[토큰]"
}
{
"intro": "테스트입니다.",
"nickname": "테스트",
"profileUrl": "테스트.png"
}
{
"status": 200,
"message": "프로필 수정 성공입니다.",
"data": null
}
- 닉네임 중복인 경우
{
"message": "NickName is Duplication",
"status": 400,
"errors": [],
"code": "M004"
}
- 서버 에러
{
"message": "Server Error",
"status": 500,
"errors": [],
"code": "C004"
}