Chats
List chat participants
For group chats, returns the participant list (paginated).
For DMs, returns the single counterparty. Requires chats:read.
Request
curl -X GET "https://api.blueticks.co/v1/chats/string/participants"{
"success": true,
"data": [
{
"chat_id": "string",
"is_admin": true,
"is_super_admin": true
}
],
"limit": 0,
"skip": 0,
"total": 0
}{
"success": false,
"error": {
"code": "string",
"message": "string",
"request_id": "string",
"details": [
{
"path": "string",
"code": "string",
"message": "string"
}
]
}
}Path Parameters
chat_id*string
Query Parameters
searchToken?string
Search token; when set, only participants whose resolved name or phone/JID matches (case-insensitive substring) are returned, and total reflects the matched count.
Length
length <= 200skip?integer
Number of participants to skip before the page (default 0).
Default
0Range
0 <= valuelimit?integer
Max participants to return.
Default
100Range
1 <= value <= 500Response
Response Body
application/json
application/json