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

# Chargeback webhook

> Transaction chargeback event

## Event

```text theme={null}
TRANSACTION_CHARGED_BACK
```

## Example

```json theme={null}
{
  "event": "TRANSACTION_CHARGED_BACK",
  "token": "abc123",
  "transaction": {
    "id": "transaction_id",
    "status": "CHARGED_BACK",
    "paymentMethod": "CREDIT_CARD",
    "amount": 100,
    "currency": "BRL",
    "createdAt": "2026-08-20T12:00:00.000Z",
    "payedAt": "2026-08-20T12:05:00.000Z"
  },
  "client": {
    "id": "client_id",
    "name": "John Doe",
    "email": "jondoe@gmail.com"
  }
}
```
