---
title: "Soft-delete a comment by ID"
method: DELETE
path: "/api/v1/comments/{id}"
tags: ["comment"]
---

# Soft-delete a comment by ID

`DELETE /api/v1/comments/{id}`

## Path parameters

- `id` string, uuid, required

## Response `201`

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

---

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