Webhook Integration – Premium FeatureWith Webhook integration, users subscribed to the premium plan gain access to real-time updates of message activities, including incoming messages and delivery status updates, delivered directly to their specified server endpoint. This enables efficient monitoring, analysis, and processing of message data, enhancing overall user experience and service capabilities.Note: Webhook integration is exclusively available for users on the premium plan, providing advanced functionality and customization options tailored to meet the diverse needs of our users.⸻Incoming Message PayloadWhen your WhatsApp number receives a new message, WhatsiPlus sends a POST request to your configured webhook URL with the following structure:{ "ID": "169732", "Type": "chat", "Hash": "YOURAPIKEY", "From": "15303776311", "To": "15303776310", "GroupId": "", "Chat": "Webhook test" }Field Descriptions: • ID: Unique identifier of the message • Type: Type of message (e.g., chat) • Hash: Optional verification hash or identifier • From: Sender’s WhatsApp number • To: Receiver’s WhatsApp number (your connected number) • GroupId: Group ID if the message was sent in a group; empty if private • Chat: The actual message content⸻Delivery Status Update PayloadWebhook also notifies your endpoint of delivery updates for messages you send via the WhatsiPlus API:{ "ID": "542655", "Delivery": 3 }Delivery Status Codes:1 Sent Message sent to the WhatsApp server One gray tick (✓) 2 Delivered Message delivered to the recipient’s device Two gray ticks (✓✓) 3 Read Message read by the recipient Two blue ticks (✓✓)Field Descriptions: • ID: Unique ID of the sent message • Delivery: Numeric code representing the delivery status⸻Benefits: • Real-time interaction handling • Accurate delivery tracking • Easy integration with CRMs, chatbots, or custom logic • Enhanced transparency and automation in user communication flows