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

# autoreply.updated

> Fired when a basic (canned) reply is updated.

## When it fires

This event fires when an existing auto-reply rule's trigger, response, or criteria is changed.

## Payload

```json theme={null}
{
  "event": "autoreply.updated",
  "data": {
    "uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "name": "xxxx",
    "trigger": "xxxx",
    "match_criteria": "contains",
    "metadata": "{\"type\":\"text\",\"data\":{\"text\":\"xxxx\"}}",
    "updated_at": "2025-01-01T12:00:00.000Z"
  }
}
```

## Key fields

| Field                 | Description                                        |
| --------------------- | -------------------------------------------------- |
| `data.uuid`           | Auto-reply rule UUID                               |
| `data.trigger`        | Updated trigger keyword or phrase                  |
| `data.match_criteria` | `"exact match"` or `"contains"`                    |
| `data.metadata`       | JSON-encoded string with response type and content |
| `data.updated_at`     | ISO 8601 update timestamp                          |
