API ReferenceWebhooksList Webhooks
List Webhooks
Retrieve a list of all active webhook configurations associated with your account.
GET
https://wapi.simplysend.email/web-setup/webhooksRequestGET
curl -X GET https://wapi.simplysend.email/web-setup/webhooks \
-H "X-Api-Key: your_api_key" \
-H "X-Id: your_account_id"Response
{
"success": true,
"data": {
"webhooks": [
{
"webhookId": "webhook_1772308587778_36403e27",
"name": "Production Analytics",
"url": "https://your-server.com/webhooks/simply-send",
"events": ["email_sent", "email_delivered"],
"isActive": true,
"createdAt": 1772308587779
}
],
"count": 1
}
}