> For the complete documentation index, see [llms.txt](https://developer.perculus.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.perculus.com/v2-tr/servisler/katilimci-yonetimi/katilimcilari-arama.md).

# Katılımcıları Arama

{% hint style="info" %}
Bir oturuma ait tüm katılımcıları görmek istiyorsanız, isteğe hiçbir parametre göndermeyerek bunu gerçekleştirebilirsiniz.
{% endhint %}

| 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.](/v2-tr/formatlar/roller.md)) |
| mobile           | string  | Katılımcı telefonu                                  |
| page\_size       | integer | Sayfa boyutu                                        |
| page\_number     | integer | Sayfa numarası                                      |

**Örnek istek:**

{% tabs %}
{% tab title="CURL" %}

```bash
curl -L -X POST 'https://<DOMAIN>/api/groups/xapi/session/:SESSION_GUID/attendee/search' \
-H 'Content-Type: application/json' \
-d '{
    "name": "John"
}'
```

{% endtab %}

{% tab title="NodeJS" %}

```
client.attendees.searchAttendees("7E040E2D-D1EC-4853-A3FB-8C69FE9BDD1F", {
        name: "John"
    });
```

{% endtab %}
{% endtabs %}

**Örnek yanıt:**

```json
    {
        "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
    }
```
