# Retrieve Registered Webhooks Webhooks are HTTP callbacks that notify your application when events happen in SQUAKE's system. Instead of continuously polling our API, webhooks push data to your endpoint when events occur. This endpoint returns the list of currently registered webhooks. See the Integration Documentation for more information. Endpoint: GET /v2/webhooks Security: Bearer-Auth ## Response 200 fields (application/json): - `id` (string) A unique identifier for the webhook, represented as a universally unique identifier (UUID) - `last_failed_at` (string,null) The timestamp of the most recent failed delivery attempt. If no failures have occurred, this field is null - `last_sent_at` (string,null) The timestamp of the most recent successful delivery attempt. If no attempts have been made, this field is null - `failed_attempts` (integer) The total number of consecutive failed delivery attempts - `kind` (string) The type of event that triggers the webhook Enum: "order", "carbon_activity_expired", "confirmation_document_available", "certificate_document_available" - `endpoint_url` (string) The URL where the webhook payloads are sent. Must be a valid URI that accepts POST requests