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

[GET] /api/v1/notifications?params

✅
알람 조회 하기

REQUEST

Header

Headers { Authorization: "Bearer {token}" }
 
RequestParameter
Filed
Type
Description
비고
size
Number
요청한 데이터의 개수
lastId
Number
데이터의 마지막 인덱스 값
isFirst
Boolean
첫번째 페이지인지 아닌지
 

RESPONSE

Body
Filed
Type
Description
비고
data.content.lastId
Number
Null
데이터의 마지막 인덱스 값
데이터가 마지막 일 때 lastId는 null 입니다.
data.content.type
String
공지 데이터의 종류
종류 : LOUDSPEAKR, FOLLOW
data.content.[].createdAt
String
알람 생성 일자
날짜 포맷: YYYY-mm-DDThh:MM:ss
data.content.[].updatedAt
String
알람 수정 일자
날짜 포맷: YYYY-mm-DDThh:MM:ss
data.content.[].isRead
Number
알람 읽음 여부
data.content.[].isClicked
String
알람 읽음 여부
data.content.[].followInfo
Object
Null
팔로우 공지 알람 정보 객체
data.content.[].followInfo.userId
String
receiver 구별키
receiver: 팔로우 당한 사용자를 의미합니다.
data.content.[].followInfo.userNickname
String
receiver 닉네임
data.content.[].followInfo.userImage
String
receiver 이미지
data.content.[].loudspeakerInfo
Object
Null
확성기 공지 알람 정보 객체
data.content.[].loudspeakerInfo.courtInfo
Object
확성기 공지를 한 경기장의 정보
data.content.[].loudspeakerInfo.courtInfo.id
Number
확성기 공지를 한 경기장의 구별키
data.content.[].loudspeakerInfo.courtInfo.name
String
확성기 공지를 한 경기장의 이름
data.content.[].loudspeakerInfo.courtInfo.latitude
Number
확성기 공지를 한 경기장의 경도
data.content.[].loudspeakerInfo.courtInfo.longitude
Number
확성기 공지를 한 경기장의 위도
data.content.[].loudspeakerInfo.courtInfo.image
String
확성기 공지를 한 경기장의 이미지
data.content.[].loudspeakerInfo.courtInfo.basketCount
Number
확성기 공지를 한 경기장의 골대 개수
data.content.[].loudspeakerInfo.courtInfo.texture
String
확성기 공지를 한 경기장의 바닥 재질
data.content.[].loudspeakerInfo.startTime
String
확성기 공지를 한 경기의 시작 시간
  • Body 예시
{ "contents":[ { "type":"FOLLOWING", "followerInfo":{ "userId":1, "userNickname":"receiver", "userImage":"http://test-image-location-receiver" }, "loudspeakerInfo":null, "created":"2021-12-16T16:57:34.339905", "updated":"2021-12-16T16:57:34.339905", "isRead":false, "isClicked":false }, { "type":"LOUDSPEAKER", "followerInfo":null, "loudspeakerInfo":{ "courtInfo":{ "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":12 }, "createdAt":"2021-12-16T16:57:34.448221", "updatedAt":"2021-12-16T16:57:34.448221", "isRead":false, "isClicked":false } ], "lastId":null }