Ana içeriğe geç

GET /store — Mağaza Listesi

📋 Genel Bilgi

Tüm mağazaları listeler. status ve filter query parametreleri ile filtreleme yapılabilir.

Base URL: {{url}}/store?status&filter
Method: GET
Content-Type: application/json


🔐 Headers

HeaderValue
AuthorizationBearer {{masked_jwt_5}}

📥 Query Parametreleri

ParametreTipAçıklamaÖrnek
statusstringDurum filtresi (active, inactive, closed)-
filterstringKod ve ad alanında arama yapar"mobildev"

✅ Response — 200 OK

{
"RecordCount": 5,
"Result": [
{
"name": "Mobildev HQ",
"code": "mobildev-mq",
"phone": "444 0 554",
"address": "Esentepe Mah., D-100 Güney Yanyol Cad. Lapishan No:25 D:147-151 Kartal",
"latitude": 40.91164358,
"longitude": 29.19297103,
"cityId": 34,
"districtId": 440,
"neighborhood": "Esentepe Mahallesi",
"status": "active",
"createdAt": 1783411022,
"updatedAt": 1783925898,
"storeKey": "cGOtbrC4",
"healthScore": 100,
"growthRate": 100,
"stability": 100,
"successRate": 100,
"avgResponseTimeMs": 7507,
"totalAuthCount": 7
},
{
"name": "Mobildev HQ",
"code": "M-HQ",
"phone": "444 0 554",
"address": "Lapis Han, 25, Erdoğan Sokak, Esentepe Mahallesi, Kartal, İstanbul",
"latitude": 40.91164358,
"longitude": 29.19297103,
"cityId": 34,
"districtId": 440,
"neighborhood": "Esentepe Mahallesi",
"status": "active",
"createdAt": 1770000000,
"updatedAt": 1780000000,
"storeKey": "12312dfg",
"healthScore": 50,
"growthRate": 100,
"stability": 50,
"successRate": 50,
"avgResponseTimeMs": 4953,
"totalAuthCount": 1
},
{
"name": "Mobildev HQ",
"code": "mobildev-mq-api",
"phone": "444 0 554",
"address": "Esentepe Mah., D-100 Güney Yanyol Cad. Lapishan No:25 D:147-151 Kartal",
"latitude": 40.91164358,
"longitude": 29.19297103,
"cityId": 34,
"districtId": 440,
"neighborhood": "Esentepe Mahallesi",
"status": "active",
"createdAt": 1783925898,
"updatedAt": 1783925898,
"storeKey": "ilt1sVDO",
"healthScore": 100,
"growthRate": 100,
"stability": 100,
"successRate": 100,
"avgResponseTimeMs": 7507,
"totalAuthCount": 7
}
]
}

Response Alanları (Mağaza)

AlanTipAçıklama
RecordCountintegerToplam mağaza sayısı
Result[]arrayMağaza listesi
Result[].namestringMağaza adı
Result[].codestringMağaza kodu
Result[].phonestringTelefon numarası
Result[].addressstringAdres bilgisi
Result[].latitudefloatEnlem (WGS84)
Result[].longitudefloatBoylam (WGS84)
Result[].cityIdintegerİl ID'si
Result[].districtIdintegerİlçe ID'si
Result[].neighborhoodstringMahalle bilgisi
Result[].statusstringDurum (active, inactive, closed)
Result[].createdAtintegerOluşturma zamanı (Unix timestamp)
Result[].updatedAtintegerGüncelleme zamanı (Unix timestamp)
Result[].storeKeystringMağaza benzersiz anahtarı
Result[].healthScoreintegerSağlık skoru (0-100)
Result[].growthRateintegerBüyüme oranı (0-100)
Result[].stabilityintegerİstikrar skoru (0-100)
Result[].successRateintegerBaşarı oranı (0-100)
Result[].avgResponseTimeMsintegerOrtalama yanıt süresi (ms)
Result[].totalAuthCountintegerToplam doğrulama sayısı

📝 Notlar

  • healthScore, growthRate, stability, successRate mağaza performans metrikleridir.
  • avgResponseTimeMs terminal yanıt sürelerinin ortalamasıdır (ms).
  • totalAuthCount toplam doğrulama işlemlerinin sayısıdır.