What is a WhatsApp group admin?

Definition

A group admin is a participant allowed to change a WhatsApp group: its name and icon, its settings, its membership and its other admins. The creator holds a superadmin role and cannot be demoted by anyone else. Almost every write operation on a group requires the linked number to hold one of these roles.

In more depth

Admin rights are the single most common reason a group automation fails in production. Your number is added to a group as an ordinary member, your code calls an endpoint that changes something, and the API answers that the action is not allowed - not because of anything on the Wapito side, but because WhatsApp itself refuses it. Worse, the role can be taken away at any moment by another admin from their phone, with no notification to your system, so code that worked yesterday can fail today for a reason that is entirely outside the API. The defence is to subscribe to the group participants event, record the role your number currently holds, and check it before a batch rather than discovering the problem halfway through. There is also a hierarchy worth respecting: the creator holds a superadmin role that ordinary admins cannot touch, so an automation that tries to tidy up the admin list will fail on exactly one member and should expect it.

In the Wapito API

On the wire it is the field role:

{
  "id": "441234567890@s.whatsapp.net",
  "role": "admin",
  "is_superadmin": false
}

On the official Cloud API

Groups are absent from Meta's Cloud API reference altogether, so admin roles have no official API equivalent to compare against.

Wapito is an independent product. It is not affiliated with, endorsed by, sponsored by or certified by WhatsApp or Meta Platforms, Inc. WhatsApp is a trademark of Meta Platforms, Inc.

Related terms

Related

Try it on your own number

Create a channel, link a WhatsApp number by QR or pairing code, and call the API in a couple of minutes. The Sandbox plan is free and needs no card.