# DELETE /event-schedules/:id

**Resource:** [Event Schedules](./event-schedules.md)  
**Scopes:** `schedules:delete`  
**Write operation:** yes

Permanently delete an event schedule. The linked automation is NOT deleted. This cannot be undone.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `id` | path | uuid | yes | Event schedule ID |

## Request example

```bash
curl -X DELETE \
  "https://api.trustpager.com/functions/v1/api/v1/event-schedules/SCHEDULE_ID" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response example

```json
(empty body, HTTP 204)
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`