Skip to main content
DELETE
/
api
/
public
/
helpdesk
/
messages
/
{messageId}
/
comments
/
{commentId}

Delete Help Desk Comment

Removes a specific comment from a help desk message thread. Only the comment author can delete their own comments.

Authentication

Requires a valid customer bearer token.

Path Parameters

messageId
number
required
Numeric identifier of the help desk message.
commentId
number
required
Numeric identifier of the comment to delete.

Response

Returns a 200 OK on success.

Examples

Delete a comment

DELETE /api/public/helpdesk/messages/501/comments/42
Authorization: Bearer {token}
HTTP/1.1 200 OK

TypeScript Integration

import endpoints from '@/api/endpoints'

await httpClient.delete(endpoints.helpDesk.comments.delete(501, 42))