# Delete a reply

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

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

Deletes a published support reply or discards the question's draft reply.

To discard the draft, use the reply ID `qrp_draft_<question_id>`. Deleting a published reply removes it from the user's view, and the question returns to the `open` status when no other support reply remains.

Only support replies can be deleted; replies written by users are rejected with `403 Forbidden`.

Required permissions: `questions.update`.

## Parameters

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

## Responses

### 204

The reply was deleted or the draft was discarded successfully.

### 401

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

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 404

The reply or draft was not found for the specified question, or is not accessible with the current credentials.

Body: Error.

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