List group members
/groups/{groupId}/membersList all members of a group.
Path parameters
groupIdRequiredstringUnique identifier of the group chat, prefixed with grp_ (e.g. grp_abc123def456). Returned by the create-group and list-groups endpoints.
Headers
AuthorizationRequiredstringYour API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.
Query parameters
limitoptionalintegerMaximum number of items to return in a single response. Must be between 1 and 200; defaults to 50. Use together with offset to page through large result sets.
offsetoptionalintegerNumber of items to skip before returning results. Combine with limit for page-based pagination (e.g. offset=50&limit=50 returns the second page). Defaults to 0.
Returns
group_idoptionalstringThe group ID
group_nameoptionalstring | nullThe group name
icon_urloptionalstring | nullURL of the group icon/photo
membersoptionalGroupMember[]
membersoptionalGroupMember[]Array of GroupMember
idoptionalstringContact identifier (phone or email)
contact_idoptionalstringidentifieroptionalstringnameoptionalstring | nulladded_atoptionalintegerpaginationoptionalPagination
paginationoptionalPaginationlimitoptionalintegeroffsetoptionalintegertotaloptionalintegerResponse codes
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X GET https://api.blooio.com/v2/api/groups/grp_abc123def456/members?limit=50&offset=0 \ -H "Authorization: Bearer bl_live_..."{ "group_id": "grp_a1b2c3d4", "group_name": "string", "icon_url": "https://example.com", "members": [ { "id": "obj_a1b2c3d4", "contact_id": "ct_a1b2c3d4", "identifier": "+15551234567", "name": "Jane Doe", "added_at": 0 } ], "pagination": { "limit": 50, "offset": 1, "total": 3 }}