Skip to content

Search Conversations



wss conversation_search

The conversation_search request returns a list of chats based on the specified parameters.

NameTypeDescription
namestringKey phrase for search
limitnumberMax number of objects
updated_at.gttimestampTime reference point
NameTypeDescription
conversationsarray[object]Array of Conversation objects
{
"request": {
"conversation_search": {
"name": "conversationName",
"limit": 100,
"updated_at": {
"gt": timestamp_in_ms,
},
},
"id": "RequestId"
}
}
{
"response": {
"id": "RequestId",
"conversations": [
{
"_id": "507f1f77bcf86cd799439011",
"name": "conversationNameTest",
...
},
{
"_id": "507f1f77bcf86cd799439012",
"name": "conversationNamePress",
...
},
...
]
}
}