> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Like Thread Message

> Toggles a like on a discussion board message.

# 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

<ParamField path="threadId" type="number" required>
  Numeric identifier of the thread.
</ParamField>

<ParamField path="messageId" type="number" required>
  Numeric identifier of the message.
</ParamField>

## Response

Returns a `200 OK` on success.

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

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