> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Article Comment

> Deletes a comment from an article.

# Delete Article Comment

Removes a specific comment from an article. Only the comment author or an administrator can delete a comment.

## Authentication

Requires a valid customer bearer token. The customer must be the comment author.

## Path Parameters

<ParamField path="postId" type="number" required>
  Numeric identifier of the article.
</ParamField>

<ParamField path="commentId" type="number" required>
  Numeric identifier of the comment to delete.
</ParamField>

## Response

Returns a `200 OK` on success.

## Examples

### Delete a comment

```http theme={null}
DELETE /api/public/blogPosts/55/comments/103
Authorization: Bearer {token}
```

```
HTTP/1.1 200 OK
```

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

await httpClient.delete(endpoints.blog.deleteComment(55, 103))
```
