Retrieve Group Members
GET/api/v2/instance/:instanceId/group/:groupJid/participant-list
This endpoint allows you to retrieve the list of participants of a specific WhatsApp group. The group_id parameter is used to identify the group for which you want to get the list of participants.
Request
Path Parameters
instanceId stringrequired
The unique identifier of the group for which you want to retrieve the participant list.
groupJid stringrequired
Group ID
Responses
- 200
- 400
- 401
- 500
Response Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
[key: string] string
[
{
"[key: string]": "string"
}
]
BadRequestException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
"message": [
"string"
],
"error": "string",
"statusCode": 0
}
UnauthorizedException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
"message": [
"string"
],
"error": "string",
"statusCode": 0
}
InternalServerErrorException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
"message": [
"string"
],
"error": "string",
"statusCode": 0
}
Loading...