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

# Report Connectivity

> Report a connectivity state change for a zone

## Endpoint

## Request Body

| Field        | Type     | Required | Description                  |
| ------------ | -------- | -------- | ---------------------------- |
| zone\_id     | string   | Yes      | Zone code                    |
| state        | string   | Yes      | New connectivity state       |
| detected\_at | datetime | Yes      | When the change was detected |

## Example

```bash theme={null}
curl -X POST https://api.wede.pt/v1/connectivity/report \
  -H "x-wede-api-key: wede_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "zone_id": "zone_lisbon_central",
    "state": "degraded",
    "detected_at": "2026-05-13T09:00:00Z"
  }'
```
