Go to App

Retrieve a Webhook

GET/api/v1/webhooks/{uuid}

Retrieve details of a specific webhook.

Path Parameters

ParameterTypeDescription

uuidrequiredstringWebhook identifier

bash
curl https://exportcomments.com/api/v1/webhooks/a1b2c3d4-5678-90ab-cdef-1234567890ab \
-H "X-AUTH-TOKEN: your-api-key"
Response200
json
{
"uuid": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"url": "https://your-app.com/webhooks/exportcomments",
"events": ["export.finished", "export.failed"],
"status": 1,
"enabled": true,
"isSuspended": false,
"lastEventAt": "2026-02-22T15:30:00+00:00",
"webhookEventsCount": 42,
"createdAt": "2026-01-15T12:00:00+00:00"
}