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

Katılımcıları Arama

Bir oturuma ait tüm katılımcıları görmek istiyorsanız, isteğe hiçbir parametre göndermeyerek bunu gerçekleştirebilirsiniz.

Parametre
Tip
Açıklama

user_id

string

Kullanıcı GUID

attendance_code

string

Katılımcı kodu

name

string

Katılımcı ismi

surname

string

Katılımcı soyismi

email

string

Katılımcı email

role

string

Katılımcı rolü (bkz.)

mobile

string

Katılımcı telefonu

page_size

integer

Sayfa boyutu

page_number

integer

Sayfa numarası

Örnek istek:

curl -L -X POST 'https://<DOMAIN>/api/groups/xapi/session/:SESSION_GUID/attendee/search' \
-H 'Content-Type: application/json' \
-d '{
    "name": "John"
}'
client.attendees.searchAttendees("7E040E2D-D1EC-4853-A3FB-8C69FE9BDD1F", {
        name: "John"
    });

Örnek yanıt:

    {
        "session_id": "994A39B6-DB42-4368-902A-2F9C01EE7B3F",
        "user_id": "",
        "user_guid": null,
        "attendee_id": "503738",
        "attendance_code": "27A9E30B-48C3-4933-9E15-6752D686AB51",
        "name": "John",
        "surname": "Doe",
        "email": "doe@example.com",
        "role": "e",
        "mobile": null,
        "creation_date": "2024-10-18T21:39:39.000233+03:00",
        "updating_date": "2024-10-18T21:39:39.000233+03:00",
        "operation": null
    }

Last updated