# List webhook endpoints Retrieve all configured webhook endpoints for the account. Endpoint: GET /partner/v2/account/{accountId}/webhook Version: 2.0 Security: PartnerOAuth ## Query parameters: - `includeDisabled` (boolean) Include disabled endpoints ## Path parameters: - `accountId` (integer, required) Account identifier ## Response 200 fields (application/json): - `webhooks` (array) List of webhook endpoints - `webhooks.createdAt` (string) Creation timestamp Example: "2025-01-01T10:00:00Z" - `webhooks.eventTypes` (array) Event types this endpoint is subscribed to Example: ["appointment.created","appointment.updated","form.completed"] - `webhooks.failureCount24h` (integer) Number of failed deliveries in the last 24 hours Example: 2 - `webhooks.id` (integer) Unique webhook endpoint identifier Example: 12345 - `webhooks.isEnabled` (boolean) Whether this endpoint is enabled Example: true - `webhooks.lastFailureAt` (string) Timestamp of last failed delivery - `webhooks.lastSuccessAt` (string) Timestamp of last successful delivery - `webhooks.name` (string) Friendly name for the endpoint Example: "Production Webhook" - `webhooks.signingSecret` (string) Signing secret (only shown on creation) Example: "whsec_abc123..." - `webhooks.successCount24h` (integer) Number of successful deliveries in the last 24 hours Example: 42 - `webhooks.updatedAt` (string) Last update timestamp Example: "2025-01-10T14:30:00Z" - `webhooks.url` (string) Webhook URL where events are delivered Example: "https://api.example.com/webhooks/lobbie" ## Response 401 fields ## Response 403 fields