# Delete a comment reply

`DELETE https://api.cademi.com.br/api/v3/products/{product_id}/comments/{comment_id}/replies/{reply_id}`

Operation ID: `comments.replies.delete` · API v3

Deletes a single reply from a comment. The top-level comment and its other replies are not affected.

Only replies written by an administrator or an API credential (`author.kind` is `admin` or `credential`) can be deleted. Attempts to delete any other reply return `403 Forbidden`. To remove the entire conversation, delete the top-level comment instead.

Required permissions: `comments.delete`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `product_id` | path | string | yes |  |
| `comment_id` | path | string | yes |  |
| `reply_id` | path | string | yes |  |

## Responses

### 204

The reply was deleted successfully.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The credentials lack the required permission, or the reply was not written by an administrator or an API credential.

Body: Error.

### 404

The reply was not found in this comment or is not accessible with the current credentials.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
