Katılımcıları Silme
Bir katılımcıyı oturumdan kaldırmanın üç yolu vardır:
ATTENDANCE_CODE parametresi ile:
curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<ATTENDANCE_CODE>' \
--header 'Content-Type: application/json'USER_GUID parametresi ile:
curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<USER_GUID>' \
--header 'Content-Type: application/json'EMAIL parametresi ile:
curl --location --request DELETE 'https://<DOMAIN>/xapi/v2/session/<SESSION_GUID>/attendee/<EMAIL>' \
--header 'Content-Type: application/json'ATTENDANCE_CODE ile
client.attendees.deleteAttendeeByAttendanceCode("B027EDFC-BF6D-4551-9ED2-38663C100C94", "ABCD90OK-BF6D-4551-9ED2-38663C10987");USER_GUID ile
client.attendees.deleteAttendeeByUserGuid("B027EDFC-BF6D-4551-9ED2-38663C100C94", "ABCD90OK-BF6D-4551-9ED2-38663C10987");EMAIL ile
client.attendees.deleteAttendeeByEmail("B027EDFC-BF6D-4551-9ED2-38663C100C94", "[email protected]");Example Response:
Başarılı bir operasyon 204 No Content kodunu döner.
Last updated
Was this helpful?