Skip to content

List Conversations



wss conversation_list

The conversation_list request returns a list of conversation objects.

NameTypeDescription
limitnumberMax number of objects
updated_at.gttimestampTime reference point
NameTypeDescription
conversationsarray[object]Array of Conversation objects
{
"request": {
"conversation_list": {
"limit": 67,
"updated_at": {
"gt": timestamp_in_ms
}
},
"id": "RequestId"
}
}
{
"response": {
"id": "RequestId",
"conversations": [
{
"_id": "507f1f77bcf86cd799439011",
"name": "General",
"type": "g",
"description": "General discuss chat",
"owner_id": "507f191e810c19729de860ea",
"opponent_id": "507f191e810c19729de880ee",
"last_message": {
"_id" :"507f191e810c19729de860ea",
"body": "Any news on the recent decision?",
"from": "507f191e810c19729de880ee",
"t": 15673838833
},
"unread_messages_count": 2,
"created_at": "2025-08-13T05:51:44.733Z",
"updated_at": "2025-08-13T05:51:44.733Z"
}
]
}
}