Blooio API Reference
Group Members

List group members

List all members of a group.

GET
/groups/{groupId}/members

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Path Parameters

groupId*string

Group ID

Match^grp_[a-zA-Z0-9]+$

Query Parameters

limit?integer

Maximum number of items to return (1-200)

Default50
Range1 <= value <= 200
offset?integer

Number of items to skip

Default0
Range0 <= value

Response Body

application/json

application/json

application/json

curl -X GET "https://backend.blooio.com/v2/api/groups/grp_abc123def456/members"
{
  "members": [
    {
      "id": "string",
      "contact_id": "string",
      "identifier": "string",
      "name": "string",
      "added_at": 0
    }
  ],
  "pagination": {
    "limit": 0,
    "offset": 0,
    "total": 0
  }
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}