Skip to main content
POST
/
api
/
public
/
community
/
board
/
threads
/
{threadId}
/
messages
Create Thread Message
curl --request POST \
  --url https://spaces.nexudus.com/api/public/community/board/threads/{threadId}/messages \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Content": "<string>"
}
'

Create Thread Message

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

Authentication

Requires a valid customer bearer token.

Path Parameters

threadId
number
required
Numeric identifier of the thread to reply to.

Request Body

Content
string
required
The text content of the reply.

Response

Returns a 200 OK on success.

TypeScript Integration

import endpoints from '@/api/endpoints'

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