Fetch Chats
GET/chat/fetchChats
Search all chats, or group them according to the chats parameter in the url query.
Request
Query Parameters
chats string
Possible values: [all
, single
, group
]
default: "all"
Responses
- 201
- application/json
- Schema
- Example (from schema)
Schema
singleChats string[]required
groupChats string[]required
{
"singleChats": [
"string"
],
"groupChats": [
"string"
]
}
Loading...