API ReferenceWebhooksGet Webhook
Get Webhook Details
Fetch detailed configuration and metadata for a specific webhook by its unique identifier.
GET
https://wapi.simplysend.email/web-setup/webhooks/{webhookId}Parameters
webhookIdRequiredstring
The unique identifier of the webhook.
RequestGET
curl -X GET https://wapi.simplysend.email/web-setup/webhooks/{webhookId} \
-H "X-Api-Key: your_api_key" \
-H "X-Id: your_account_id"Response
{
"success": true,
"data": {
"webhookId": "webhook_1772354412494_02cb8b58",
"name": "Production Analytics",
"url": "https://your-server.com/webhooks/simply-send",
"events": ["email_delivered"],
"isActive": true,
"secret": "whsec_...",
"createdAt": 1772354412494,
"updatedAt": 1772354412494
}
}