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
Numeric identifier of the help desk message to comment on.
Request Body
The text content of the comment.
Response
Returns a 200 OK on success.
Examples
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
import endpoints from '@/api/endpoints'
await httpClient.post(endpoints.helpDesk.comments.create(501), {
MessageText: 'The issue is still happening after restarting the router.',
})