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
Numeric identifier of the help desk message.
Numeric identifier of the comment to delete.
Response
Returns a 200 OK on success.
Examples
DELETE /api/public/helpdesk/messages/501/comments/42
Authorization: Bearer {token}
TypeScript Integration
import endpoints from '@/api/endpoints'
await httpClient.delete(endpoints.helpDesk.comments.delete(501, 42))