Sistemlerinizi Messazen altyapısına bağlayarak otomatik mesaj, SMS ve e-posta akışlarını kolayca tetikleyin.
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.
| 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) |
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ı!"
}'
{
"status": "success",
"message_id": "msg_9845729482",
"recipient": "905001234567",
"delivered": true,
"cost": 1.00
}