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'

Example Response:

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

Last updated

Was this helpful?