v1

latestOpenAPI 3.1.02026-07-14330101.9 KB

Group Participants

The Group Participant endpoint allows users to view the participants of a specific WhatsApp group. To fetch the list of participants, users need to pass the group_id parameter, which can be obtained from the All Group endpoint. This functionality is essential for scenarios where knowing who is in a group is critical, such as managing memberships, sending messages to specific group members, or tracking participant activity. By integrating this endpoint, users gain detailed insights into group composition, enabling further interactions and management of group members through the API.

post/groups/participant

Request body

group_idstring required

The group id ( make sure you are in the group )

Response

200

successboolean
messagestring

Example response

{
  "success": true,
  "message": "OK",
  "data": [
    {
      "id": "120363316818953043@g.us",
      "name": "Test comm",
      "created_at": "2024-09-03 15:47:12",
      "owner": "14064793566@s.whatsapp.net",
      "is_community": true,
      "is_owner": true,
      "participant_count": 1
    }
  ]
}