Groups
List groups
List all groups for the organization with optional search and pagination.
Authorization
BearerAuth AuthorizationBearer <token>
API key authentication. Use your API key as the bearer token.
In: header
Query Parameters
limit?integer
Maximum number of items to return (1-200)
Default
50Range
1 <= value <= 200offset?integer
Number of items to skip
Default
0Range
0 <= valueq?string
Search query (matches group name)
sort?string
Sort order
Default
"recent"Value in
"recent" | "oldest" | "name_asc" | "name_desc"Response Body
application/json
application/json
curl -X GET "https://backend.blooio.com/v2/api/groups"{
"groups": [
{
"group_id": "string",
"name": "string",
"chat_guid": "string",
"member_count": 0,
"created_at": 0
}
],
"pagination": {
"limit": 0,
"offset": 0,
"total": 0
}
}{
"error": "string",
"status": 0
}