Deleting an Attendee
This step shows how to remove participants from a session via PerculusAPI
There are three ways to remove an attendee from a session:
With ATTENDANCE_CODE parameter
curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<ATTENDANCE_CODE>' \
--header 'Content-Type: application/json'
With USER_GUID parameter
curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<USER_GUID>' \
--header 'Content-Type: application/json'
With EMAIL parameter
curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<EMAIL>' \
--header 'Content-Type: application/json'
With ATTENDANCE_CODE parameter
client.attendees.deleteAttendeeByAttendanceCode("B027EDFC-BF6D-4551-9ED2-38663C100C94", "ABCD90OK-BF6D-4551-9ED2-38663C10987");
With USER_GUID parameter
client.attendees.deleteAttendeeByUserGuid("B027EDFC-BF6D-4551-9ED2-38663C100C94", "ABCD90OK-BF6D-4551-9ED2-38663C10987");
With EMAIL parameter
client.attendees.deleteAttendeeByEmail("B027EDFC-BF6D-4551-9ED2-38663C100C94", "john.doe@example.com");
Example Response:
A successful delete operation will return 204 No Content
without any body.