Selecting an Attendee
This page describes how to obtain details of a participant.
By ATTENDANCE_CODE
Example request:
curl -L -X GET 'https://<DOMAIN>/xapi/v2/session/:SESSION_GUID/attendee/:ATTENDANCE_CODE'client.attendees.get_by_attendance_code("<SESSION_ID>", "<ATTENDANCE_CODE>");By USER_GUID
Example request:
curl -L -X GET 'https://<DOMAIN>/xapi/v2/session/:SESSION_GUID/attendee/:USER_GUID'client.attendees.get_by_user_guid("<SESSION_ID>", "<USER_GUID>");By EMAIL
Example request:
curl -L -X GET 'https://<DOMAIN>/xapi/v2/session/:SESSION_GUID/attendee/:ATTENDEE_EMAIL'client.attendees.get_by_email("<SESSION_ID>", "<EMAIL>");Example response:
{
"session_id": "994A34B6-DB42-4368-902A-2F9C01EE7B3F",
"user_id": "FA376607-8D8B-499A-935D-8F74086FCD25",
"user_guid": null,
"attendee_id": "562630",
"attendance_code": "19B42A55-BCCF-446A-9876-4F042AF2CA94",
"name": "Komutan",
"surname": "Logar",
"email": "[email protected]",
"role": "a",
"mobile": "",
"creation_date": "2025-02-07T16:40:47.000182+03:00",
"updating_date": "2025-02-07T16:40:47.000182+03:00",
"operation": null
}Last updated
Was this helpful?