Webhooks
v1.0Receive real-time notifications about events in your Zaptick account
Real-time Updates: Webhooks allow your application to receive instant notifications when events occur.
Configure Webhooks
Set Webhook URL
POST
/api/webhook-configRequest Body
JSON
{
"webhookUrl": "https://yourdomain.com/webhooks/zaptick",
"events": [
"message.incoming",
"message.status",
"template.approved"
]
}HTTPS Required: Your webhook endpoint must use HTTPS for security.
Response Requirements
| Requirement | Description |
|---|---|
| Status Code | Respond with 200 OK to acknowledge receipt |
| Response Time | Respond within 5 seconds (process async if needed) |
| Retries | Failed webhooks will be retried 3 times with exponential backoff |