> ## 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.

# Follow Thread

> Toggles follow status on a discussion board thread.

# 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

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

## Response

Returns a `200 OK` on success.

## TypeScript Integration

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

await httpClient.post(endpoints.community.board.threads.follow(101))
```
