Searching Attendees
This step shows how to filter participants via GroupsAPI
Parameter
Type
Description
curl -L -X POST 'https://<DOMAIN>/xapi/v2/session/:SESSION_GUID/attendee/search' \
-H 'Content-Type: application/json' \
-d '{
"name": "John"
}'client.attendees.search_attendees("<SESSION_ID>", {
name: "John"
}); {
"session_id": "994A39B6-DB42-4368-902A-2F9C01EE7B3F",
"user_id": "",
"user_guid": null,
"attendee_id": "503738",
"attendance_code": "27A9E30B-48C3-4933-9E15-6752D686AB51",
"name": "John",
"surname": "Doe",
"email": "[email protected]",
"role": "e",
"mobile": null,
"creation_date": "2024-10-18T21:39:39.000233+03:00",
"updating_date": "2024-10-18T21:39:39.000233+03:00",
"operation": null
}Last updated