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

[GET] /api/v1/users/join

RESPONSE

  • JSON (예시)
 
Body
Path
Type
Description
비고
userId
Number
사용자 구별키
token
String
Spring Boot에서 생성한 토큰
profileImage
String
프로필 이미지
nickname
String
카카오 닉네임
notifications
Array
공지
최대 10개까지 보내줌
notifications[].notificationId
Number
공지의 구별키
notifications[].createdAt
String
공지의 생성날짜
notifications[].message
String
공지의 메시지내용
notifications[].updatedAt
String
공지의 수정날짜
 
{ "userId": 1, "token": "Spring token", "profileImage": "(이미지 S3 저장 url), "nickname": "젤리", "description": "나는 농구가 좋아", "proficiency": null, "positions": null, "notifications": [ { "notificationId": 3 "createdAt": "2021-01-01T12:20:10", "message": "절리가 팔로우했습니다.", "updatedAt": "2021-01-01T12:20:10" }, { "notificationId": "createdAt": "2021-01-01T12:20:10", "message": "절리가 팔로우했습니다.", "updatedAt": "2021-01-01T12:20:10" } ] }