코드
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
}
}