> ## 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.

# Create Thread Message

> Posts a reply in a discussion board thread.

# Create Thread Message

Posts a new reply message in an existing discussion board thread.

## Authentication

Requires a valid customer bearer token.

## Path Parameters

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

## Request Body

<ParamField body="Content" type="string" required>
  The text content of the reply.
</ParamField>

## Response

Returns a `200 OK` on success.

## TypeScript Integration

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

await httpClient.post(endpoints.community.board.messages.create(101), {
  Content: 'Great suggestion, thanks!',
})
```
