> ## 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 Thread Message

> Deletes a message from a discussion board thread.

# Delete Thread Message

Removes a specific message from a discussion board thread. Only the message author can delete their own messages.

## Authentication

Requires a valid customer bearer token.

## Path Parameters

<ParamField path="threadId" type="number" required>
  Numeric identifier of the thread.
</ParamField>

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

## Response

Returns a `200 OK` on success.

## TypeScript Integration

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

await httpClient.delete(endpoints.community.board.messages.delete(101, 55))
```
