❌Katılımcı Silme
Bu alan, GroupsAPI ile bir oturumadaki katılımcılarınızı silmenin yöntemini gösterir.
Bir oturumda bulunan katılımcılarınızı 3 farklı parametre ile silebilirsiniz:
ATTENDANCE_CODE
USER_ID
EMAIL
Aşağıdaki örnekte bir oturumdaki katılımcınızın silmenin yöntemini görebilirsiniz:
ATTENDANCE_CODE parametresi ile silme işlemi
curl --location --request DELETE 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<ATTENDANCE_CODE>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''
USER_ID parametresi ile silme işlemi
curl --location --request DELETE 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<USER_ID>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''
EMAIL parametresi ile silme işlemi
curl --location --request DELETE 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<EMAIL>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''
Last updated
Was this helpful?