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

# Get memos on a matter

`GET /matters/{matterId}/memos`

Returns a list of memos on the specified matter.

## Path parameters

- `matterId` string, required

## Query parameters

- `Offset` integer
- `Limit` integer

## Response `200`

When request is successful. Returns a paged collection of 'Memo' objects.

- MemoPagedCollection
  - `id` string, nullable
  - `href` string, nullable
  - `relation` string, nullable
  - `method` string, nullable
  - `self` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `value` Memo[], nullable
    - `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).
  - `offset` integer, nullable
  - `limit` integer, nullable
  - `size` integer
  - `first` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `previous` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `next` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `last` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable

---

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