앱 실행시 내 정보/알림 조회
REQUEST
Header
Headers { Authorization: "Bearer {token}" }
RESPONSE
Body
- Body 예시
{ "id": 1 "email": "jelly@gmail.com", "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", "notifications": [ { "id": 1, "type": "FOLLOW", "followInfo": { "creator": { "id": 4, "nickname": "flora", "profileImage": "https://image-url", } }, "loudspeakerInfo":null, "isRead": true, "isClicked": true }, { "id": 2, "type": "LOUD_SPEAKER", "loudSpeakerInfo": { "creator": { "id":1, "nickname":"receiver", "profileImage":"http://test-image-location-receiver" }, "court": { "id":1, "name":"잠실한강공원농구장", "latitude":127.082348760182, "longitude":37.5177740347208, "image":"https://team14-slam.s3.ap-northeast-2.amazonaws.com/court_dummy/court1.jpg", "basketCount":2, "texture":"ASPHALT" }, "startTime": "2021-12-01T12:00:00.000z" }, "followerInfo":null, "isRead": true, "isClicked": true } ] }