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

# Offline Payments Webhooks

> Receive Cashfree Offline Payments webhooks for in-person card and UPI transactions so your servers learn about completions, failures, and refunds.

Configure an endpoint to receive instant notifications when your terminal's status changes through Cashfree Offline Payments.

## Terminal status update webhook

The terminal status update webhook is triggered when a terminal's status changes. The payload includes the updated terminal details and the event timestamp.

```java theme={"dark"}
{
    "data": {
        "added_on": "2024-03-07 15:11:02",
        "cf_terminal_id": 1234,
        "last_updated_on": "2024-04-26 12:16:08",
        "terminal_id": 1233,
        "terminal_name": "ABC",
        "terminal_phone": "9696969696",
        "terminal_status": "PROVISIONALLY_ACTIVE",
        "terminal_type": "STOREFRONT",
        "review_remarks": "approved"
    },
    "event_time": "2024-04-26T12:16:08+05:30",
    "type": "TERMINAL_STATUS_UPDATE"
}
```
