List Webhooks
Retrieve all webhooks for your organization
GET
/webhooksRequires
Bearer authenticationRetrieve a list of all webhooks configured for your organization.
Query Parameters
pageintegerPage number for pagination.
limitintegerNumber of items per page.
GET
/webhookscurl -X GET "https://api.vastal.agency/v1/webhooks" \ -H "Authorization: Bearer YOUR_API_KEY"
const response = await fetch( 'https://api.vastal.agency/v1/webhooks', { headers: { 'Authorization': 'Bearer YOUR_API_KEY' } } ); const data = await response.json();
200Success
{ "success": true, "data": [ { "id": "whk_abc123", "url": "https://example.com/webhook", "events": ["row.created", "row.updated"], "active": true, "created_at": "2024-01-15T10:30:00Z" } ] }