Skip to main content

Get group participants

This endpoint enables you to get a participant list of specific groups.

How to use

You can use the following cURL to obtain a response from this endpoint:

curl --location --request GET https://nodeapi.superviz.com/groups/participants/{groupId} \
--header "Authorization: Bearer ${TOKEN}" \
--header "apikey: ${APIKEY}"

HTTP Request

GET https://nodeapi.superviz.com/groups/participants/{groupId}

In the request, you will need to send in the path following field:

NameDescription
groupIdRequired. The ID of the group.

Headers

When using this endpoint, you need to provide the Authorization Bearer token and the API Key. The following headers are required:

NameDescription
AuthorizationRequired. You must utilize the authentication token.
apikeyRequired. You must utilize the SuperViz Token that can be found on the developer page. By utilizing this key, we will define whether to get data from the developer or the production environment.

Response

Status code 200 will indicate a successful response with the participant list of the specific group. The response will be in JSON format, following the pagination guide for SuperViz REST API, and include the following fields:

NameTypeDescription
participant[]arrayThe list of participants.
participant[].idstringThe ID of the participant.
participant[].namestringThe name of the participant.
participant[].emailstringThe email of the participant.
participant[].avatarstringThe avatar of the participant.
participant[].createdAtstringThe date and time of the participant's creation.

Example:

{
"pagination": {
"page": 1,
"totalPages": 10,
"limit": 10,
"total": 100
},
"data": [
{
"id": "example-id",
"name": "John Doe",
"email": "john@doe.com",
"avatar": "https://example.com/avatar.png",
"createdAt": "2021-05-30T21:23:00.000Z"
}
]
}