HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🌲
Resume - 형욱
/
🖼️
프로젝트 관리 (1)
/
♟️
API 설계
/
🎣
사용자는 대결 상대와의 채팅방을 찾기 위해 채팅방 목록을 조회할 수 있다.
🎣

사용자는 대결 상대와의 채팅방을 찾기 위해 채팅방 목록을 조회할 수 있다.

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

최종본

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

Request

Response

{ "chats": [ { "id": Number, // 매칭 요청 ID (match_proposal_id) "content": String // 매칭 요청 내용 "target": { // 채팅 상대 "nickname": String, // 채팅 상대 닉네임 }, "lastChat": { // 마지막 채팅 "content": String // 채팅 내용 } } ] }
notion image

기능 특이사항

  • 채팅방 목록 순서는 마지막 채팅일자 기준으로 내림차순 정렬

이전 백업

2022-07-30(토)

Response

{ "chats": [ { "id": Number, // 매칭 요청 ID (match_proposal_id) "target": { // 채팅 상대 "nickname": String, // 채팅 상대 닉네임 }, "lastChat": { // 마지막 채팅 "content": String // 채팅 내용 } } ] }