Retrieve a list of all participants in a WhatsApp group, including their roles and display information.
This endpoint returns detailed information about each participant, including their admin status and display names.
Request
Device identifier for multi-device support. Required when multiple devices are registered. If only one device is registered, it will be used as the default.
Response
Response code (e.g., SUCCESS)
Response message describing the result Example: Success getting group participants
Array of participant objects Participant’s phone number with WhatsApp suffix
Participant’s LID (if available) Example: 12345@lid
Participant’s display name
Whether the participant is a group admin
Whether the participant is a super admin (group creator)
curl -X GET \
'https://your-api-domain.com/group/[email protected] ' \
-H 'X-Device-Id: my-device' \
-u 'username:password'
{
"code" : "SUCCESS" ,
"message" : "Success getting group participants" ,
"results" : {
"group_id" : "[email protected] " ,
"name" : "My Awesome Group" ,
"participants" : [
{
"jid" : "[email protected] " ,
"phone_number" : "[email protected] " ,
"lid" : "12345@lid" ,
"display_name" : "Anonymous Member" ,
"is_admin" : true ,
"is_super_admin" : false
}
]
}
}