Blooio API Reference
Group Members

Remove a member from a group (Coming Soon)

⚠️ 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.

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

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]+$
contactId*string

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

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X DELETE "https://backend.blooio.com/v2/api/groups/grp_abc123def456/members/%2B15551234567"
{
  "success": true,
  "removed_at": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "Coming soon",
  "message": "Removing group members is coming soon"
}