Easily trigger automated message, SMS and email flows by connecting your systems to the Messazen infrastructure.
Messazen API has been developed to directly integrate your application or e-commerce site (Shopify, WooCommerce, custom software, etc.) to WhatsApp Cloud API, SMS, Email and Telegram channels. You can send messages across all channels with a single API Key.
| Parameter | Type | Status | Description |
|---|---|---|---|
module |
string | Required | whatsapp, sms, eposta veya telegram |
to |
string | Required | Recipient phone number or email address |
message |
string | Required | Message or template content to be sent |
type |
string | Optional | Category type (e.g. 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
}