---
title: "Update a note"
method: PUT
path: "/notes/{id}"
tags: ["Notes"]
---

# Update a note

`PUT /notes/{id}`

Updates the note with the specified ID.

## Path parameters

- `id` string, required

## Request body

- UpdateNoteDto
  - `title` string, nullable, required
  - `content` string, required — The content of the note in HTML format.
  - `pinned` boolean, required
  - `source` 'phone' | 'phoneInbound' | 'phoneOutbound' | 'inPerson' | 'onlineMeeting' | 'callAttempted', nullable
  - `labelIds` string[]
  - `createdById` string — The id of the user to attribute the note to.

## Response `204`

Note updated successfully.

## Other responses

- `400` — Bad request - missing or invalid required fields
- `401` — Unauthorized - invalid or missing authentication
- `404` — Note not found
- `500` — Error response

---

[API](https://skmtc.net/spott/apis/spott-webhooks.md) · [All operations](https://skmtc.net/spott/apis/spott-webhooks/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/spott/spott-webhooks/versions/ad1f8c51cf0a/schema)
