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

Like Thread

Toggles the authenticated customer’s like on a thread. Call once to like, call again to unlike.

Authentication

Requires a valid customer bearer token.

Path Parameters

threadId
number
required
Numeric identifier of the thread.

Response

Returns a 200 OK on success.

TypeScript Integration

import endpoints from '@/api/endpoints'

await httpClient.post(endpoints.community.board.threads.like(101))