Kişi oluştur
Yeni bir kişi kaydı açar. `email` ya da `external_id` benzersizdir; aynı değerle ikinci kez çağırmak 409 döner. Yazma isteğidir: yeniden denemelerde `Idempotency-Key` kullan.
Gerekli kapsam: contacts.write
curl -X POST "https://{slug}.crm.blesyum.app/api/crm/public/v1/contacts" \
-H "Authorization: Bearer blsk_..." \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"email": "ayse@ornek.com",
"name": "Ayşe Yılmaz",
"phone": "+905321234567",
"external_id": "musteri-8842",
"custom_attributes": {
"plan": "pro",
"sehir": "İstanbul"
}
}'{
"data": {
"type": "contact",
"id": "0193c4e2-7a1b-7c3d-9e5f-1a2b3c4d5e6f",
"role": "user",
"email": "ayse@ornek.com",
"name": "Ayşe Yılmaz",
"phone": "+905321234567",
"external_id": "musteri-8842",
"created_at": 1787304000
},
"trace_id": "01JC…"
}