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

# Get a memo

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

Retrieves a specified memo.

## Path parameters

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

## Response `200`

When request is successful. Returns a 'Memo' object.

- Memo
  - `href` string, nullable
  - `relation` string, nullable
  - `method` string, nullable
  - `self` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `id` string, nullable — The unique identifier of the memo.
  - `matterId` string, nullable — The unique identifier of the matter.
  - `title` string, nullable — The title of the memo.
  - `text` string, nullable — The text (content) of the memo. In RTF (Rich Text Format).
  - `plainText` string, nullable — The plain text (content) of the memo.
  - `createdDate` string, date-time — Date the memo was created.
  - `createdByUserId` string, nullable — The unique identifier of the user who created the memo.
  - `lastUpdated` string, date-time, nullable — Date and time that the memo was last updated.
  - `updatedByUserId` string, nullable — The unique identifier of the user who last updated the memo.
  - `isDeleted` boolean — Indicates whether or not the memo is deleted (true if it is, false if not).

## Other responses

- `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)
