Describe the bug
DELETE /api/{session}/groups/{id} returns 501 "Not Implemented" on the NOWEB engine.
WAHA Version: 2026.4.2
Engine: NOWEB
Tier: PLUS
To Reproduce
- Create a group:
POST /api/{session}/groups with {"subject": "Test Group", "participants": []}
- Attempt to delete:
DELETE /api/{session}/groups/{groupId}
- Response:
{"message":"The method is not implemented by 'NOWEB' engine.","error":"Not Implemented","statusCode":501}
Expected behavior
The group should be deleted (or at minimum, all participants removed and the group archived), matching the behavior on the WEBJS engine.
Additional context
WhatsApp allows group admins to delete groups. The endpoint is documented in the OpenAPI spec and works on WEBJS, but returns 501 on NOWEB. As a workaround we use the /leave endpoint, but that only removes the bot — it doesn't delete the group.

Describe the bug
DELETE /api/{session}/groups/{id}returns 501 "Not Implemented" on the NOWEB engine.WAHA Version: 2026.4.2
Engine: NOWEB
Tier: PLUS
To Reproduce
POST /api/{session}/groupswith{"subject": "Test Group", "participants": []}DELETE /api/{session}/groups/{groupId}{"message":"The method is not implemented by 'NOWEB' engine.","error":"Not Implemented","statusCode":501}Expected behavior
The group should be deleted (or at minimum, all participants removed and the group archived), matching the behavior on the WEBJS engine.
Additional context
WhatsApp allows group admins to delete groups. The endpoint is documented in the OpenAPI spec and works on WEBJS, but returns 501 on NOWEB. As a workaround we use the
/leaveendpoint, but that only removes the bot — it doesn't delete the group.