Core Features
Explore E-SMART360's essential tools for handling customer interactions, automation, and broadcasting via WhatsApp.
Overview
E-SMART360 provides powerful features to manage customer communications through WhatsApp and other channels. You can handle conversations from a unified inbox, automate responses with bots, broadcast messages to subscribers, and manage e-commerce catalogs seamlessly.
These tools help you scale support operations while maintaining personalized interactions. Key capabilities include multi-platform chat management, template-based messaging, audience segmentation, chatbot automation, and order handling.
Omnichannel Inbox
Unify WhatsApp, Instagram, Facebook, and web chats in one dashboard.
Message Templates
Create reusable templates for notifications and replies.
Broadcasting
Target and send bulk messages to segmented lists.
Subscriber Manager
Organize contacts with labels and custom fields.
Bot Builder
Design no-code flows for automated conversations.
Catalog & Orders
Showcase products and process orders directly in chat.
Omnichannel Inbox
Manage conversations across platforms without switching apps. E-SMART360's inbox aggregates WhatsApp, Instagram, Facebook Messenger, and website live chat into a single view.
Enable channels in your dashboard settings to start receiving messages from multiple sources.
Connect your WhatsApp Business API account to route messages.
Link your Instagram Business account for DM handling.
Integrate Facebook Messenger for seamless support.
Message Templates and Broadcasting
Design approved WhatsApp templates for proactive messaging. Use them in broadcasts to reach subscribers efficiently.
Create Template
Navigate to Message Templates and submit for WhatsApp approval.
Build Broadcast
Select audience, template, and schedule delivery.
Track Results
Monitor open rates and replies in analytics.
Here is an example API call to send a broadcast:
const response = await fetch('https://api.example.com/v1/broadcasts', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
template_id: 'welcome_template',
recipients: ['+1234567890', '+0987654321']
})
});
curl -X POST https://api.example.com/v1/broadcasts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"template_id": "welcome_template",
"recipients": ["+1234567890", "+0987654321"]
}'
ID of the approved message template.
Array of phone numbers in E.164 format.
Subscriber Management
Import contacts and segment them using labels and custom fields. This enables targeted campaigns and personalized support.
Use custom fields like customer_tier or last_purchase_date to create dynamic lists.
// Example segmentation query
const subscribers = await fetch('https://api.example.com/v1/subscribers?label=premium&custom_field[customer_tier]=gold');
Bot Builder and Automation
Build conversational flows with triggers, buttons, and logic branches. No coding required—drag and drop to automate replies.
Catalog and E-Commerce
Share interactive catalogs in WhatsApp chats. Customers browse products and place orders directly.
Unique order identifier.
List of products with quantity and price.
Test catalogs in sandbox mode before going live to ensure smooth order flow.
Last updated today
Built with Documentation.AI