Get Started
Concepts
AI Powered Features
How to Guides?
Developer Resources
WapiKit Glossary
Key terms and concepts for understanding WapiKit and WhatsApp marketing
This glossary provides definitions for key terms and concepts related to WapiKit, WhatsApp marketing, and customer engagement.
A set of protocols and tools that allows different software applications to communicate with each other. WapiKit provides an API that enables developers to integrate WhatsApp marketing capabilities into their own applications.
// Example API call to send a message
fetch('https://api.wapikit.com/v1/messages', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-access-token': 'your_api_token'
},
body: JSON.stringify({
to: '1234567890',
text: 'Hello from WapiKit!'
})
});
A message sent to multiple recipients simultaneously. In WapiKit, broadcasts allow you to send the same message to a large number of contacts at once, while still maintaining personalization options.
A structured marketing initiative sent to a specific contact list. WapiKit campaigns can include text, images, videos, and interactive elements, with detailed analytics to track performance.
Meta’s cloud-based interface for the WhatsApp Business Platform. WapiKit uses the WhatsApp Cloud API to provide reliable, scalable messaging capabilities without requiring complex infrastructure setup.
An individual stored in your WapiKit database, typically a customer or prospect. Contacts include essential information like phone numbers and can have additional custom attributes.
A segmented group of contacts used for targeted campaigns. WapiKit allows you to create multiple lists based on various criteria for more effective marketing.
A series of messages exchanged between your business and a customer. WapiKit tracks and organizes conversations to provide context and continuity in customer interactions.
A series of messages sent automatically based on a predefined schedule or triggered by specific customer actions. WapiKit’s AI can optimize drip campaigns based on engagement patterns.
Example Drip Sequence:
Day 1: Welcome message
Day 3: Product information
Day 7: Special offer
Day 14: Follow-up for non-responders
Pre-approved message formats required by WhatsApp for business-initiated conversations. Templates ensure quality and prevent spam, and can include variables for personalization.
All business-initiated messages on WhatsApp must use approved templates.
A business entity within WapiKit that contains all your contacts, campaigns, and team members. Each organization has its own settings, WhatsApp connections, and billing.
A method of regulating access to system resources based on the roles of individual users. WapiKit’s RBAC system allows you to define specific permissions for different team members.
Common Roles:
- Admin: Full access to all features
- Manager: Can create campaigns and manage team members
- Agent: Can respond to conversations
- Viewer: Can only view data and reports
A 24-hour period following a customer-initiated message during which a business can send free-form replies without using templates. WapiKit helps you maximize engagement during this window.
A label used to categorize contacts, conversations, or campaigns for better organization and targeting. WapiKit’s AI can automatically suggest and apply tags based on conversation content.
A shared interface where multiple team members can view and respond to customer messages. WapiKit’s team inbox includes assignment features and collaboration tools.
A message sent using a pre-approved template. These messages can be sent at any time, even outside the 24-hour session window, but must follow the approved format.
A mechanism that allows real-time data transfer when specific events occur. WapiKit can send webhooks to your systems when messages are received, delivered, read, or when other events happen.
// Example webhook payload when a message is received
{
"event": "message.received",
"timestamp": "2025-03-21T10:30:00Z",
"data": {
"messageId": "wamid.123456789",
"from": "1234567890",
"text": "Hello, I'm interested in your product",
"timestamp": "2025-03-21T10:29:55Z"
}
}
An official business account on WhatsApp that allows companies to communicate with customers at scale. WapiKit connects to your WABA to enable marketing and engagement features.
A WhatsApp Business Account is required to use WapiKit’s features.
Meta’s enterprise solution that enables businesses to integrate WhatsApp messaging into their systems. WapiKit is built on top of the WhatsApp Business Platform.
The cloud-hosted version of WhatsApp’s Business API that allows businesses to send and receive messages programmatically. WapiKit uses the Cloud API for reliable, scalable messaging.
Additional Resources
For more information about WapiKit and WhatsApp marketing:
Was this page helpful?