List Webhooks

Retrieve all webhooks for your organization

GET/webhooks
Requires Bearer authentication

Retrieve a list of all webhooks configured for your organization.

Query Parameters

pageinteger

Page number for pagination.

limitinteger

Number of items per page.

GET/webhooks
curl -X GET "https://api.vastal.agency/v1/webhooks" \
-H "Authorization: Bearer YOUR_API_KEY"
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"
  }
]
}