> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orkesta.com.tr/llms.txt
> Use this file to discover all available pages before exploring further.

# Bayi Listesi

> Üye işyerine ait bayi kayıtlarını sayfalı olarak listeler

## 👥 Bayi Kayıtları Listesi

Üye işyerine ait bayi kayıtlarını sayfalı olarak listeler.

**`GET`** `https://api-test.fincraft.com.tr/api/v1/general/merchant-members`

## Query Parameters

| Parametre       | Tip     | Zorunlu | Açıklama                   |
| --------------- | ------- | ------- | -------------------------- |
| `q`             | String  | Hayır   | Arama metni                |
| `page`          | Integer | Hayır   | Sayfa numarası (0 tabanlı) |
| `size`          | Integer | Hayır   | Sayfa başına kayıt sayısı  |
| `sortBy`        | String  | Hayır   | Sıralama alanı             |
| `sortDirection` | String  | Hayır   | Sıralama yönü (asc/desc)   |

## Response Body

```json theme={null}
{
  "content": [
    {
      "id": "f6eca599-1f7f-4195-a2b2-79ef105a3e38",
      "code": "EXT1234567",
      "name": "Faruk Eczanesi",
      "contactPerson": "John Doe",
      "phoneNumber": "+905551234567",
      "address": "İstanbul, Türkiye",
      "active": true
    }
  ],
  "page": 0,
  "size": 20,
  "totalElements": 1,
  "totalPages": 1
}
```

## cURL Örneği

```bash theme={null}
curl -X GET "https://api-test.fincraft.com.tr/api/v1/general/merchant-members?page=0&size=20" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```
