---
title: "Update conversation note"
method: PUT
path: "/conversations/{conversationId}/notes/{noteId}"
tags: ["Notes"]
---

# Update conversation note

`PUT /conversations/{conversationId}/notes/{noteId}`

Update a note in a conversation.

## Path parameters

- `conversationId` string, required
- `noteId` string, required

## Request body

- PAUpdateNoteDTO
  - `content` string — The updated content of the note
  - `file_ids` unknown[], nullable — The IDs of the files to attach to the note
    - unknown

## Response `200`

OK

- PANoteDTO
  - `id` string — The ID of the note
  - `author` PANoteAuthorDTO
    - `id` string — The ID of the note author
    - `email` string, nullable — The email address of the note author
    - `url` string, nullable — The URL of the author resource when available
    - `name` string — The display name of the note author
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `content` string — The content of the note
  - `file_ids` FilePublicId[] — The IDs of the files attached to the note
    - `id` string
  - `conversation_id` string, nullable — The ID of the conversation the note belongs to
  - `url` string — The URL of the note resource

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.dev/superchat/apis/superchat-api.md) · [All operations](https://skmtc.dev/superchat/apis/superchat-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/superchat/superchat-api/revisions/3bc557a0072f/schema)
