Skip to main content
POST
/
api
/
public
/
community
/
board
/
{threadId}
/
messages
/
{messageId}
/
like

Like Thread Message

Toggles the authenticated customer’s like on a specific message within a thread.

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.

Response

Returns a 200 OK on success.

TypeScript Integration

import endpoints from '@/api/endpoints'

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