# Webhooks ## Retrieve Registered Webhooks - [GET /v2/webhooks](https://docs-v2.squake.earth/docs/openapi/webhooks/get-v2-webhooks.md): 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. ## Register New Webhook - [POST /v2/webhooks](https://docs-v2.squake.earth/docs/openapi/webhooks/post-v2-webhooks.md): This endpoint allows you to register a new Webhook to subscribe to certain kind of events being triggered by Squake This endpoint returns a newly created webhook upon a successful request. The webhook includes a used to verify the authenticity of future webhook messages. Please ensure you save this , as it cannot be retrieved later. ## Retrieve Webhook Information - [GET /v2/webhooks/{id}](https://docs-v2.squake.earth/docs/openapi/webhooks/get-v2-webhooks-id.md): This endpoint allows you to retrieve an information about a specific Webhook ## Update Webhook - [PUT /v2/webhooks/{id}](https://docs-v2.squake.earth/docs/openapi/webhooks/put-v2-webhooks-id.md): This endpoint allows you to update a previously registered webhook. It accepts the same parameters as the Register New Webhook endpoint and responds with an updated Webhook entity ## Delete Webhook - [DELETE /v2/webhooks/{id}](https://docs-v2.squake.earth/docs/openapi/webhooks/delete-v2-webhooks-id.md): This endpoint allows you to delete previously registered webhook