Deleting an Attendee
This step shows how to remove participants from a session via GroupsAPI
curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<ATTENDANCE_CODE>' \
--header 'Content-Type: application/json'curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<USER_GUID>' \
--header 'Content-Type: application/json'curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<EMAIL>' \
--header 'Content-Type: application/json'client.attendees.delete_by_attendance_code("<SESSION_GUID>", "<ATTENDANCE_CODE>");client.attendees.delete_by_user_id("<SESSION_GUID>", "<USER_GUID>");client.attendees.delete_by_email("<SESSION_GUID>", "<USER_EMAIL>");Last updated