HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
📜
[팀13] 사각사각 ✏️
/
🗒️
다이어그램 문서
/
📄
시리즈(모집공고) 리스트 조회 API
📄

시리즈(모집공고) 리스트 조회 API

Tags
API
작성자
Method
GET
notion image
코드
sequenceDiagram User->>+Client: 모집공고 리스트 조회 요청 Client->>API_Server: GET /series Note over Client, API_Server: 모집공고 리스트 조회 API API_Server->>+Reply: 해당 모집공고의 정보 요청 Reply-->>API_Server: 예외처리 - EntityNotFound Reply-->>Client: 해당 모징공고 응답 Client->>-User: UI 랜딩

Request

{ }

Response

{ "series": { "id": 1, //long "thumbnail": "~~~.png", //string "title": "모집공고 제목", //string "introduceSentence": "소개문장", //string "startDate": "2022-01-01", //string "endDate": "2022-01-10", //string "articleCount": 15, //int "likes": 100, //int }, "subscribe": { "startDate": "2021-12-01", //string "endDate": "2021-12-03", //string "status": "", //string }, "category": "poem", //string "writer": { "id": 1, //long "nickname": "" //string } }