BetaThe V4 API is in beta — endpoints and functionality may change.
Group Membersv2

Remove a member from a group (Coming Soon)

DELETE/groups/{groupId}/members/{contactId}

⚠️ COMING SOON - This endpoint is temporarily disabled while we stabilize this feature.

Remove a contact from a group. If the group is linked to an existing iMessage chat, also removes the participant from that chat. If the contact being removed is the organization's own phone number, leaves the group chat instead.

Path parameters

groupIdRequiredstring

Unique identifier of the group chat, prefixed with grp_ (e.g. grp_abc123def456). Returned by the create-group and list-groups endpoints.

contactIdRequiredstring

Contact identifier (phone number in E.164 format or email, URL-encoded)

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Returns

successoptionalboolean
removed_atoptionalinteger

Response codes

200Member removed
400Invalid request parameters
401Authentication required or invalid
404Resource not found
501Coming soon - endpoint temporarily disabled

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X DELETE https://api.blooio.com/v2/api/groups/grp_abc123def456/members/%2B15551234567 \  -H "Authorization: Bearer bl_live_..."
Response objectexample
{  "success": false,  "removed_at": 0}