Chat Room List


Retrieve Chat Room List

ํŠน์ • ์‚ฌ์šฉ์ž๊ฐ€ ์ฐธ์—ฌ ์ค‘์ธ ์ฑ„ํŒ…๋ฐฉ ๋ชฉ๋ก์„ ์กฐํšŒํ•ฉ๋‹ˆ๋‹ค.

Event

  • Event Name: retrieve_chat_rooms

Header

Name
Type
Descriptoin

App-Id

{ app id }

Authorization

{ access token }

Payload

Name
Type
Description

userId

string

๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ด๋Š” ์‚ฌ์šฉ์ž ID

Response

{
  "event": "chat_rooms_retred",
  "data": {
    "userId": "user-12345",
    "chatRooms": [
      {
        "roomId": "room-67890",
        "lastMessage": "See you tomorrow!",
        "lastMessageTimestamp": "2025-01-18T12:00:00Z",
      },
      {
        "roomId": "room-54321",
        "lastMessage": "Meeting at 3 PM.",
        "lastMessageTimestamp": "2025-01-18T11:00:00Z",
      }
    ]
  }
}

Last updated