HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
📜
[팀13] 사각사각 ✏️
/
🗒️
다이어그램 문서
/
마이페이지/유저 정보 수정

마이페이지/유저 정보 수정

Tags
API
작성자
Method
PATCH
http://52.79.51.188:8080/users/me

Request

  • 토큰필요, body 필요
notion image
notion image

Response

{ "success": true, "httpMethod": "PATCH", "statusCode": 200, "code": null, "data": { "userId": 5 } }

예외1) 토큰 틀렸을 경우 A004

{ "success": false, "httpMethod": null, "statusCode": 401, "code": "A004", "data": { "exception": null, "message": "인증 실패하였습니다.", "status": 401, "errors": [], "code": "A004", "severTime": "2021-12-07T15:57:05.508578" } }
 

예외2) 닉네임 중복 경우 A006

{ "success": false, "httpMethod": null, "statusCode": 400, "code": "A006", "data": { "exception": "NickNameDuplicated", "message": "[nickName = nick 수정]", "status": 400, "errors": [], "code": "A006", "severTime": "2021-12-07T16:21:20.584587" } }