:::endpoint DELETE /v1/me/calendar/events/{id}

The guests and the reminders go with whatever this removes.

Deleting a whole appointment that has guests sends them a cancellation, so their
own calendar marks it off rather than leaving a meeting nobody attends. Removing
one appearance of a series does not: that is a change to the series, not a
cancellation of it.

## Request

| Parameter          | Description                                                |
| ------------------ | ---------------------------------------------------------- |
| `occurrence_start` | Which appearance, as the moment the rule originally put it |
| `scope`            | `this`, `following` or `all`. Defaults to `this`           |

```bash
curl -X DELETE "https://api.proppertrading.com/v1/me/calendar/events/4471?occurrence_start=2026-08-24T07:00:00Z&scope=following" \
  -H "Authorization: Bearer ptat_9f2c1a44_3b8e7d2f5c9a1b4e6d8f0a2c4e6b8d1f"
```

## Response

`204`, with no body.

## Errors

| Status | Code                 | Meaning                                                |
| ------ | -------------------- | ------------------------------------------------------ |
| 403    | `insufficient_scope` | This device does not hold `calendar:write`             |
| 403    | `calendar_read_only` | The account may read that calendar but not write in it |
| 404    | `resource_not_found` | No such appointment here                               |