Skip to main content
DELETE
/
api
/
public
/
community
/
board
/
threads
/
{threadId}
/
messages
/
{messageId}

Delete Thread Message

Removes a specific message from a discussion board thread. Only the message author can delete their own messages.

Authentication

Requires a valid customer bearer token.

Path Parameters

threadId
number
required
Numeric identifier of the thread.
messageId
number
required
Numeric identifier of the message to delete.

Response

Returns a 200 OK on success.

TypeScript Integration

import endpoints from '@/api/endpoints'

await httpClient.delete(endpoints.community.board.messages.delete(101, 55))