# DELETE /scheduled-communications/:id

**Resource:** [Scheduled Communications](./scheduled-communications.md)  
**Scopes:** `dispatcher:write`  
**Write operation:** yes

Soft-cancel a pending scheduled communication. Sets status to "cancelled". The row is retained for audit. Returns 204 No Content on success. Returns a validation error if the row is not pending.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `id` | path | uuid | yes | Scheduled communication UUID to cancel |

## Request example

```bash
curl -X DELETE \
  "https://api.trustpager.com/functions/v1/api/v1/scheduled-communications/60b5889e-c8e1-4273-836e-67a3f0b3231a" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response example

```json
HTTP 204 No Content
```

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