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

Follow Thread

Toggles the authenticated customer’s follow status on a thread. Following a thread enables notifications for new replies.

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.follow(101))