Create Thread Message
Posts a new reply message in an existing discussion board thread.
Authentication
Requires a valid customer bearer token.
Path Parameters
Numeric identifier of the thread to reply to.
Request Body
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!',
})