Katılımcı Filtreleme
Bu alan, GroupsAPI ile bir oturumadaki katılımcılarınızı filtrelemenin yöntemini gösterir.
ATTENDANCE_CODE Parametresi ile Katılımcı Filtreleme
curl --location --request GET 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<ATTENDANCE_CODE>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''pip install perculus-sdkfrom 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>"
)
#Get the attandee by ATTENDANCE_CODE
attendee = client.attendees.get_by_attendance_code(
session_id="<SESSION_ID>",
attendance_code="<ATTENDANCE_CODE>"
)
print(attendee)
EMAIL Parametresi ile Katılımcı Filtreleme
curl --location --request GET 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<EMAIL>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''pip install perculus-sdkfrom 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>"
)
#Get the attandee by EMAIL
attendee = client.attendees.get_by_email(
session_id="<SESSION_ID>",
email="<EMAIL>"
)
print(attendee)Katılımcı Bilgileri ile Filtreleme
Parametre
Tip
Last updated