GET
/
wa
/
instances
/
{instance_id}
/
groups
/
{group_id}
/
participants
curl --request GET \
  --url https://api.zapsterapi.com/v1/wa/instances/{instance_id}/groups/{group_id}/participants \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "5511123451234",
    "name": "Member Name",
    "profile_picture": "https://example.com/profile-picture.jpg",
    "role": "member"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

instance_id
string
required
group_id
string
required

Query Parameters

name
string

Filtrar membros por nome

role
enum<string>

Filtrar membros por papel / role

Available options:
admin,
superadmin,
member

Response

200
application/json
success
id
string
Example:

"5511123451234"

name
string | null
Example:

"Member Name"

profile_picture
string
Example:

"https://example.com/profile-picture.jpg"

role
enum<string>
Available options:
admin,
superadmin,
member
Example:

"member"