---
title: "Delete comment"
method: DELETE
path: "/public-video-review/{link_id}/comments/{comment_id}"
tags: ["Public - Comments"]
---

# Delete comment

`DELETE /public-video-review/{link_id}/comments/{comment_id}`

Deletes a comment and all its replies.

## Authentication

| Parameter | Type | Description |
|-----------|------|-------------|
| `link_id` | path | Review link identifier |
| `comment_id` | path | Comment identifier |
| `token` | query | User session token |

To delete a comment, use the same `token` used when creating the comment. The token can be the same value as `link_id` or a unique identifier generated by the application.

**Example:** `550e8400-e29b-41d4-a716-446655440000`

## Behavior

- Deleting a parent comment also deletes all linked replies
- This action is irreversible
- The link must be active and not expired

## Path parameters

- `link_id` string, uuid, required
- `comment_id` string, uuid, required

## Query parameters

- `token` string, uuid, required

## Response `200`

Comment deleted successfully

- DeleteResponse
  - `msg` string — Deletion confirmation message.

## Other responses

- `401` — Invalid or missing token
- `403` — Review link expired or inactive
- `404` — Comment not found

---

[API](https://skmtc.net/pandavideo/apis/api-v2.md) · [All operations](https://skmtc.net/pandavideo/apis/api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pandavideo/api-v2/revisions/4fbd3c623ca9/schema)
