POST
/
groups
/
participants
curl --request POST \
  --url https://api.crunchz.app/api/groups/participants \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "group_id": "120363330973662287@g.us"
}'
{
  "success": true,
  "message": "<string>",
  "data": [
    {
      "id": "<string>",
      "is_admin": true
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

ParticipantCollection

The response is of type object.