---
title: "Update a memo"
method: PUT
path: "/matters/{matterId}/memos/{id}"
tags: ["Memos"]
---

# Update a memo

`PUT /matters/{matterId}/memos/{id}`

Updates a specified memo.

## Path parameters

- `matterId` string, required
- `id` string, required

## Request body

- MemoDto
  - `title` string, required — The title of the memo.
  - `text` string, required — The text (content) of the memo. Supports plain-text and RTF.
  - `userId` string, nullable — Unique identifier of the user.
  - `createdDateUtc` string, date-time, nullable — Date that the memo was created. Will default to the current date and time, if not supplied.

## Response `202`

When request is accepted. Returns a hypermedia 'Link' object of the memo to be updated.

- Link
  - `id` string, nullable
  - `href` string, nullable
  - `relation` string, nullable
  - `method` string, nullable

## Other responses

- `400` — When an unsupported request is made.
- `404` — When the specified memo does not exist.

---

[API](https://skmtc.net/smokeball/apis/api.md) · [All operations](https://skmtc.net/smokeball/apis/api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smokeball/api/revisions/ffc7fffa0d5c/schema)
