Skip to content

List Messages



wss message_list

The message_list request returns a list of message objects for the specified query.

NameTypeDescription
cidstringConversation ID where to search
idsarray[string]Array of IDs for the necessary messages
limitnumberMax number of returned messages
updated_at.gtdateTime point of search
updated_at.ltdateTime point of search
NameTypeDescription
messagesarrayArray of Message objects
{
"request": {
"message_list": {
"cid": "63077ad836b78c3d82af0812",
"limit": 27,
"updated_at": {
"gt": timestamp_in_ms
}
},
"id": "RequestId"
}
}
{
"response": {
"id": "RequestId",
"messages": [
{
_id: "63760c34c35e750877677925",
body: "How is going?",
cid: "63563a2ad745dc1c6ad01b5f",
from: "63480e68f4794709f802a2fa",
status: "sent",
attachments: [
{ file_id: "file_name_1", file_name: "file_1" }
],
reactions: {}
t: 1668680757,
created_at: "2023-05-24T14:34:58.066Z"
}
]
}
}
{
"request": {
"message_list": {
"cid": "63077ad836b78c3d82af0812",
"ids": [ "63760c34c35e750877677925", ... ]
},
"id": "RequestId"
}
}
{
"response": {
"id": "RequestId",
"messages": [
{
"_id": "63760c34c35e750877677925",
"body": "How is going?",
"cid": "63563a2ad745dc1c6ad01b5f",
"from": "63480e68f4794709f802a2fa",
"status": "sent",
"attachments": [
{ "file_id": "file_name_1", "file_name": "file_1" }
],
"reactions": {}
"t": 1668680757,
"created_at": "2025-08-13T05:51:44.733Z"
},
...
]
}
}