HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
👼
[팀2] 극락이들
/
🍶
천초주
/
초대 목록 조회

초대 목록 조회

Method
GET
URI
/api/v1/invitations
Request
- 회원 아이디
Response
- 초대 아이디 - 초대 날짜 - 앨범 제목
Judy
완료
Choi
완료
연관 UI
notion image
notion image
Swagger UI
Swagger UI
https://test-api.jungdam.tk/swagger-ui/index.html#/invitation-controller/getAllWithPendingStatusUsingGET
HeadersPath ParamResponse Body
 

Headers

{ "Content-Type": "application/json" "Authorization": "Bearer {TOKEN}" }
Bearer과 Token 사이 공백 주의해주세요! ⇒ {TOKEN} 부분은 실제 토큰 값이 들어가는 부분입니다.

Path Param

METHOD
URI
GET
/api/v1/invitations

Response Body

*는 필수 항목을 의미합니다.
PATH
TYPE
DESCRIPTION
*invitationId
Long
초대 아이디
*invitationCreatedAt
String(LocalDate)
초대 요청일
*albumTitle
String
앨범 제목
HTTP 200 OK { "message": "INVITATION_READ_ALL_SUCCESS", "serverDateTime": "2021-12-16T12:39:37.6470976", "data": [ { "invitationId": 1, "invitationCreatedAt": "2021-12-16", "albumTitle": "앨범 제목1" }, { "invitationId": 3, "invitationCreatedAt": "2021-12-18", "albumTitle": "앨범 제목3" } ] }
HTTP 404 NOT_FOUND // token으로 회원을 찾을 수 없는 경우 { "message": "NOT_EXIST_MEMBER", "serverDateTime": "2021-12-15T08:37:32.95572" }