Katılımcıları Silme
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.deleteAttendeeByAttendanceCode("B027EDFC-BF6D-4551-9ED2-38663C100C94", "ABCD90OK-BF6D-4551-9ED2-38663C10987");client.attendees.deleteAttendeeByUserGuid("B027EDFC-BF6D-4551-9ED2-38663C100C94", "ABCD90OK-BF6D-4551-9ED2-38663C10987");client.attendees.deleteAttendeeByEmail("B027EDFC-BF6D-4551-9ED2-38663C100C94", "[email protected]");Last updated