HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
🏀
[팀14] 슬램 - 우리 주변 농구장 예약
/
🧭
Domain 설계
/
[PUT] /api/v1/users/myprofile/image

[PUT] /api/v1/users/myprofile/image

✅
내 프로필 이미지 수정

REQUEST

Header

Headers { Authorization: "Bearer {token}" }
 
Body
Field
Type
Description
비고
profileImage
Form Data
사용자 프로필 이미지
  • Body 예시
{ "profileImage": image.png }
 

RESPONSE

Body 1
Field
Type
Description
비고
profileImage
String
사용자 프로필 이미지
  • Body 예시
{ "user": { "id": 1, "nickname": "jelly", "profileImage": "s3에 저장된 프로필 이미지 url", "description": "한줄 소개", "role": "USER", "proficiency": "BEGINNER", "positions": [ "PG", "SG" ], "createdAt": "2021-12-01T12:00:00", "updatedAt": "2021-12-01T12:00:00" } }