βοΈUpdating Participants
This step shows how to update participants in a Groups session.
With ATTENDANCE_CODE
Parameters
Type
Description
curl --location --request PUT 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<ATTENDANCE_CODE>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
"name": "test",
"surname": "surname"
"role": "u"
}'from perculus_sdk.client import APIClient
# API client
client = APIClient()
...
# Update an Attendee by ATTENDANCE_CODE
attendee = client.attendees.update_by_attendance_code(
session_id="<SESSION_ID>",
attendance_code="<ATTENDANCE_CODE>",
attendee={
"name": "<NAME>",
"surname": "<SURNAME>"
"role": "<ROLE>"
}
)
print(attendee)With EMAIL
Parameters
Type
Description
Last updated