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

Delete a group

DELETE/groups/{groupId}

Soft-delete a group. Members are automatically removed. If the group is linked to an existing iMessage chat, the number also leaves that chat.

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.

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
deleted_atoptionalinteger

Response codes

200Group deleted
401Authentication required or invalid
404Resource not found
502Failed to leave linked iMessage chat
503No active number available to leave group chat

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 \  -H "Authorization: Bearer bl_live_..."
Response objectexample
{  "success": false,  "deleted_at": 0}