Skip to main content
POST
/
api
/
public
/
community
/
board
/
{threadId}
/
messages
/
{messageId}
/
like
Like Thread Message
curl --request POST \
  --url https://spaces.nexudus.com/api/public/community/board/{threadId}/messages/{messageId}/like \
  --header 'Authorization: Basic <encoded-value>'

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))