---
title: "Get call notes"
method: GET
path: "/calls/{id}/notes"
tags: ["Calls"]
---

# Get call notes

`GET /calls/{id}/notes`

Returns the notes for a call. Only published notes are returned.

## Path parameters

- `id` string, required — Call ID (positive integer) or UUID

## Response `200`

Call notes

- NoteListResponse
  - `data` Note[], required
    - `id` number, required — Note ID
    - `title` string, nullable, required — Note title
    - `date` string, required — Note date in ISO 8601 format
    - `rawContent` unknown
    - `status` 'DRAFT' | 'PUBLISHED', required — Note status
    - `type` 'USER' | 'AI', required — Note type
    - `publishedDate` string, nullable, required — Publication timestamp in ISO 8601 format
    - `createdOn` string, required — Creation timestamp in ISO 8601 format
    - `modifiedOn` string, required — Last modification timestamp in ISO 8601 format
    - `createdBy` number, nullable, required — ID of the user who created the note
    - `modifiedBy` number, nullable, required — ID of the user who last modified the note

## Other responses

- `401` — Authentication failed. The API key is missing or invalid.
- `404` — Call not found
- `429` — Rate limit exceeded. Retry after the X-RateLimit-Reset interval.

---

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