> ## Documentation Index
> Fetch the complete documentation index at: https://docs.covenance.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Use a webhook to receive real-time transaction event notifications.

## Event Ordering

Covenance cannot guarantee the sequential delivery of events as they occur, nor can it ensure they will be received only once.

## Webhook Retries

If Covenance does not receive a response code of 204 from your server within 10 seconds, it will retry delivery up to 3 times.

## Setup

To begin receiving real-time event notifications of the transactions of a sub account via the webhook, register a webhook for a sub account on the dashboard.

Once you register a webhook for a sub account, you will receive a payload with the id of the transaction on the POST endpoint you specified when you created the webhook.
A maximum of 10 webhooks can be created.

## Event Payload

```json theme={null}
{
  "entityId": "<string>",
  "event": "<string>",
  "eventId": "<string>"
}
```
