> ## 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 Help Desk Comment

> Adds a comment to an existing help desk message thread.

# Create Help Desk Comment

Adds a follow-up comment to an existing help desk message thread. Used for back-and-forth communication between the customer and the support team.

## Authentication

Requires a valid customer bearer token.

## Path Parameters

<ParamField path="messageId" type="number" required>
  Numeric identifier of the help desk message to comment on.
</ParamField>

## Request Body

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

## Response

Returns a `200 OK` on success.

## Examples

### Add a comment

```http theme={null}
POST /api/public/helpdesk/messages/501/comments
Authorization: Bearer {token}
Content-Type: application/json

{
  "MessageText": "The issue is still happening after restarting the router."
}
```

## TypeScript Integration

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

await httpClient.post(endpoints.helpDesk.comments.create(501), {
  MessageText: 'The issue is still happening after restarting the router.',
})
```
