βΉοΈParticipant Details
This page describes how to obtain details of a participant.
By ATTENDANCE_CODE
curl --location --request GET 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<ATTENDANCE_CODE>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''from perculus_sdk.client import APIClient
# API client
client = APIClient()
...
# Get the attandee by ATTENDANCE_CODE
attendee = client.attendees.get_by_attendance_code(
session_id="<SESSION_ID>",
attendance_code="<ATTENDANCE_CODE>"
)
print(attendee)// ASAP :)import APIClient from "perculus-sdk"
// API client
const client = new APIClient()
...
// Get Attendee
const attendee = client.attendees.getAttendee(
"<SESSION_ID>", "<ATTENDANCE_CODE>"
)
console.log(attendee)By EMAIL
Last updated