---
title: "Get all comments for a note"
method: GET
path: "/notes/{id}/comments"
tags: ["Notes"]
---

# Get all comments for a note

`GET /notes/{id}/comments`

Returns all comments associated with a note.

## Path parameters

- `id` integer, required

## Query parameters

- `start` integer
- `limit` integer

## Response `200`

Get all comments

- object
  - `success` boolean — If the request was successful or not
  - `data` object[] — The array of comments
    - `uuid` string, uuid — The ID of the note
    - `active_flag` boolean — Whether the note is active or deleted
    - `add_time` string — The creation date and time of the note
    - `update_time` string — The creation date and time of the note
    - `content` string — The content of the note in HTML format. Subject to sanitization on the back-end.
    - `object_id` string — The ID of the object that the comment is attached to, will be the id of the note
    - `object_type` string — The type of object that the comment is attached to, will be "note"
    - `user_id` integer — The ID of the user who created the comment
    - `updater_id` integer — The ID of the user who last updated the comment
    - `company_id` integer — The ID of the company
  - `additional_data` object
    - `pagination` object — The pagination details of the list
      - `next_start` integer — Next pagination start
      - `start` integer — Pagination start
      - `limit` integer — Items shown per page
      - `more_items_in_collection` boolean — If there are more list items in the collection than displayed or not

---

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