Blooio API Reference
Group Members

Remove a member from a group (Coming Soon)

⚠️ COMING SOON - This endpoint is temporarily disabled while we stabilize device integration.

Remove a contact from a group. If the group is linked to a BlueBubbles group chat, also removes the participant from the device 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,
  "device_sync": {
    "chat_guid": "string",
    "action": "add_participant",
    "synced": true,
    "error": "string"
  }
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "Coming soon",
  "message": "Removing group members is coming soon"
}