HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
자세한 SFAM Portfolio/
🖼️
프로젝트 관리
/
♟️
API 설계
/
🔑
공고자와 신청자가 대화하기 위해 채팅 기록을 볼 수 있다.
🔑

공고자와 신청자가 대화하기 위해 채팅 기록을 볼 수 있다.

Related to 리팩터링 목록 (🧨 API & Sequence diagram) 1
Method
GET
BE.담당자
End Point
/api/matches/proposals/:id/chats
Group
Matches/chat
MoSCow
Must have
진행상태
완료
Related to 리팩터링 목록 (🧨 API & Sequence diagram) 2
Related to 리팩터링 목록 (🧨 API & Sequence diagram)
최종본이전 백업

최종본

🍭
최종 확정 일자 : 2022-07-30 (토)
  • 변경 사항
    • 변경 사항이 있다면 작성해주세요.

Request

Response

{ "match": { // 매칭 "title": String, // 공고 제목 "status": String // 매칭 상태 "target": { // 채팅 대상 "nickname": String // 상대 닉네임 } }, "chats": [ // 채팅 기록들 { "content": String, // 채팅 내용 "chattedAt": String, // 채팅 시간 "writer": { id: Number // 작성자 } }, ... ] }
notion image

이전 백업

2022-07-30 (토)

Response

{ "match": { "title": String, "status": String "target": { "nickname": String } }, "chats": [ { "content": String, "createdAt": String }, ... ] }