For the complete documentation index, see llms.txt. This page is also available as Markdown.

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>/api/groups/xapi/session/<SESSION_GUID>/attendee/<ATTENDANCE_CODE>' \
--header 'Content-Type: application/json'

USER_GUID parametresi ile:

curl --location --request DELETE 'https://<DOMAIN>/api/groups/xapi/session/<SESSION_GUID>/attendee/<USER_GUID>' \
--header 'Content-Type: application/json'

EMAIL parametresi ile:

curl --location --request DELETE 'https://<DOMAIN>/api/groups/xapi/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", "john.doe@example.com");

Example Response:

Başarılı bir operasyon 204 No Content kodunu döner.

Last updated