---
title: "List comments with filters"
method: GET
path: "/api/v1/comments"
tags: ["comment"]
---

# List comments with filters

`GET /api/v1/comments`

## Query parameters

- `page` number
- `limit` number
- `order` object
- `referenceId` string, uuid, required

## Response `201`

- CommentFindResponseDTO
  - `data` object[], required
    - `content` string, required — Free form comment content
    - `createdAt` string, date-time, required — Date when the comment was created
    - `deletedAt` string, date-time, nullable — Date when the comment was deleted (null if not deleted)
    - `id` string, uuid, required — Unique identifier of the comment
    - `lastUpdatedAt` string, date-time, required — Date when the comment was last updated
    - `reference` object, required — Reference to the entity being commented on
      - `id` string, uuid, required — Reference id for the entity being commented on
      - `type` 'SESSION', required — Type of entity being commented on
    - `userId` string, uuid, required — ID of the user who created the comment
  - `meta` object, required
    - `hasNext` boolean, required
    - `limit` number, required
    - `page` number, required
    - `total` number, required

---

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