:::endpoint PATCH /v1/me/mail/notes/{id}

Your own note. `manage_mailbox` may change anybody's, which is there for tidying
up after somebody who left rather than for rewriting a colleague's words.

The answer comes back with `edited` true. Show it: a remark that has been
rewritten since the person above it read it is not the remark they remember
agreeing with.

## Request

```bash
curl -X PATCH https://api.proppertrading.com/v1/me/mail/notes/88 \
  -H "Authorization: Bearer ptat_9f2c1a44_3b8e7d2f5c9a1b4e6d8f0a2c4e6b8d1f" \
  -H "Content-Type: application/json" \
  -d '{"body": "Called them back. Bank statement arrived, passing to finance."}'
```

| Field  | Type   | Description                     |
| ------ | ------ | ------------------------------- |
| `body` | string | Required, up to 5000 characters |

## Response

The note, in the shape [add a note](/docs/api/mail/note-create) returns.

## Errors

| Status | Code                 | Meaning                                                     |
| ------ | -------------------- | ----------------------------------------------------------- |
| 403    | `insufficient_scope` | This device does not hold `mail:write`                      |
| 403    | `not_your_note`      | Somebody else wrote it and you do not hold `manage_mailbox` |
| 404    | `resource_not_found` | No note with that id in a mailbox you can read              |
| 422    | `validation_failed`  | `body` missing, empty or over 5000 characters               |