# Webhooks

Webhooks let you set up integrations that subscribe to automated notifications (events) on the Finix API. When an event is triggered, an HTTP POST payload is sent to the webhook's configured URL.

**Related Guides:**
- [Webhooks](/additional-resources/developers/webhooks)


## Create a Webhook

 - [POST /webhooks](https://docs.finix.com/api/webhooks/createwebhook.md): Create a Webhook to specify an endpoint where Finix can send events.

## List Webhooks

 - [GET /webhooks](https://docs.finix.com/api/webhooks/listwebhooks.md): Retrieve a list of Webhook resources.

## Fetch a Webhook

 - [GET /webhooks/{webhook_id}](https://docs.finix.com/api/webhooks/getwebhook.md): Retrieve the details of an existing Webhook.

## Update Webhook

 - [PUT /webhooks/{webhook_id}](https://docs.finix.com/api/webhooks/updatewebhook.md): Update an existing Webhook to:
  - Disable or enable an endpoint URL to receive webhook events.
  - Add authentication to a webhook.
  - Filter the webhook events sent to an endpoint URL.

