Müşteri (Customer)
Müşteri Detayı
Tek müşteriyi adres defteriyle birlikte döner.
Uç Nokta
İstek yöntemi: GET · Yetki: read (okuma)
GET
/api/commerce/v1/customers/:idYol Parametreleri
| Alan | Tip | Açıklama |
|---|---|---|
| id* | uuid | Müşteri kimliği |
İstek (cURL)
cURL
curl "https://www.arsigo.com/api/commerce/v1/customers/c12…" \
-H "Authorization: Bearer ark_xxxxxxxxxxxxxxxx"Yanıt
200 OK · application/json
{
"data": {
"id": "c12…",
"email": "ayse@example.com",
"phone": "+90…",
"firstName": "Ayşe",
"lastName": "Yılmaz",
"acceptsMarketing": true,
"note": null,
"tags": ["vip"],
"addresses": [
{ "id": "…", "title": "Ev", "city": "İstanbul", "line1": "…", "isDefault": true }
],
"createdAt": "2026-05-01T08:00:00Z"
}
}