Messazen
Developer API

Gelişmiş API Entegrasyonu

Sistemlerinizi Messazen altyapısına bağlayarak otomatik mesaj, SMS ve e-posta akışlarını kolayca tetikleyin.

Güçlü ve Hızlı Entegrasyon

Messazen API, uygulamanızı veya e-ticaret sitenizi (Shopify, WooCommerce, özel yazılımlar vb.) WhatsApp Cloud API, SMS, E-posta ve Telegram kanallarına doğrudan entegre etmek üzere geliştirilmiştir. Tek bir API Key ile tüm kanallarda mesaj gönderimi sağlayabilirsiniz.

RESTful Mimari JSON İstek Yapısı Token Tabanlı Yetkilendirme Yüksek Gönderim Hızı Webhooks Geri Bildirimleri

Gönderim Parametreleri

Parametre Tip Durum aciklama
module string Zorunlu whatsapp, sms, eposta veya telegram
to string Zorunlu Alıcı telefon numarası veya e-posta adresi
message string Zorunlu Gönderilecek mesaj veya şablon içeriği
type string Opsiyonel Kategori türü (örn: marketing, otp)

Örnek İstek (cURL)

POST /api/v1/process
curl -X POST https://api.messazen.com/v1/process \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: your_api_token" \
  -d '{
    "module": "whatsapp",
    "to": "905001234567",
    "type": "marketing",
    "message": "Merhaba, indirim başladı!"
  }'

Örnek Başarılı Yanıt

HTTP/1.1 200 OK
{
  "status": "success",
  "message_id": "msg_9845729482",
  "recipient": "905001234567",
  "delivered": true,
  "cost": 1.00
}