Go to App

List Webhooks

GET/api/v1/webhooks

Retrieve all webhook configurations for the authenticated user.

Query Parameters

ParameterTypeDescription

pageintegerPage number (default: 1) limitintegerItems per page (default: 10, max: 30) querystringSearch webhooks by URL

bash
curl https://exportcomments.com/api/v1/webhooks \
-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,
"webhookEventsCount": 42
}
]