Filtering Participants
This step shows how to filter participants via GroupsAPI
Parameter
Type
Description
curl --location --request GET 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<EMAIL>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: x-www-form-urlencoded' \
--data-urlencode 'name=john' \
--data-urlencode 'surname=doe'from perculus_sdk.client import APIClient
# API client
client = APIClient()
...
# Filter Attendees
attendees = client.attendees.search_attendees(
session_id="<SESSION_ID>",
params={
"name": "<NAME>",
"role": "<ROLE>"
}
)
print(attendees)// ASAP :)Last updated