SDK'nın yüklendiğinden emin olunduktan sonra aşağıdaki şekilde katılımcılarınızı silebilirsiniz:
from perculus_sdk.client import APIClient
# API client
client = APIClient()
# Set your domain (if you haven't set it before)
client.set_domain("<DOMAIN>")
# Set your credentials(if you haven't set it before)
client.set_credentials(
access_key="<EMAIL>",
secret_key="<PASSWORD>",
account_id="<ACCOUNT_ID>"
)
#DELETE the attandee by ATTENDANCE_CODE
client.attendees.delete_by_attendance_code_or_user_id(
session_id="<SESSION_ID>",
attendance_code_or_user_id="<ATTENDANCE_CODE>"
)
#DELETE the attandee by USER_ID
client.attendees.delete_by_attendance_code_or_user_id(
session_id="<SESSION_ID>",
attendance_code_or_user_id="<USER_ID>"
)
#DELETE the attandee by EMAIL
client.attendees.delete_by_email(
session_id="<SESSION_ID>",
email="<EMAIL>"
)