When to use this module

  • Broadcast a personalized template message to a large group of contacts.
  • Plan ahead by scheduling your campaigns to send exactly when you want them to.
  • Track your campaign's success with detailed delivery statistics and link-click analytics.

Endpoints

MethodRoutePermissionDescription
POST/api/v1/WhatsappCampaignWhatsappCampaign:CreateCreate campaign
PUT/api/v1/WhatsappCampaign/{id}WhatsappCampaign:EditUpdate campaign
DEL/api/v1/WhatsappCampaign/{id}WhatsappCampaign:DeleteDelete campaign
GET/api/v1/WhatsappCampaign/{id}WhatsappCampaign:ViewGet campaign detail
POST/api/v1/WhatsappCampaign/getallWhatsappCampaign:ViewPaginated campaign list
GET/api/v1/WhatsappCampaign/status-countsWhatsappCampaign:ViewCounts by status for tabs
POST/api/v1/WhatsappCampaign/{id}/quick-runWhatsappCampaign:ExecuteImmediately dispatch campaign
GET/api/v1/WhatsappCampaign/dashboard/mainWhatsappCampaign:ViewCampaign dashboard overview
GET/api/v1/WhatsappCampaign/{id}/contactsWhatsappCampaign:ViewCampaign contact delivery list
GET/api/v1/WhatsappCampaign/{id}/button-clicksWhatsappCampaign:ViewButton click analytics
POST

/api/v1/WhatsappCampaign

JSON Request
{
  "name": "May Promo",
  "templateId": "guid-of-template",
  "scheduledAt": "2026-05-28T09:00:00Z",
  "contactFilter": {
    "tags": ["VIP", "Returning"],
    "isActive": true
  }
}
POST

/api/v1/WhatsappCampaign/getall

JSON Request
{
  "pageNumber": 1,
  "pageSize": 10,
  "sortBy": "createddate desc",
  "status": "Draft",
  "nameFilter": "promo"
}
GET

/api/v1/WhatsappCampaign/{id}/contacts

Query Parameters

ParameterTypeDescription
pageintPage number (default: 1)
pageSizeintPage size (default: 20)
searchTermstring?Filter by contact name or phone
statusFilterstring?Pending / Sent / Delivered / Read / Failed

Campaign Statuses

StatusDescription
DraftYour campaign is saved but hasn't been sent yet.
ScheduledYour campaign is queued up and will send automatically at your chosen time.
RunningYour messages are actively being sent out right now.
CompletedSuccess! All messages in this campaign have been sent.
FailedWe encountered an issue while trying to send your campaign.
CancelledYou successfully stopped this campaign before it was sent.