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

Delete Thread

Removes a discussion board thread and all its messages. Only the thread author can delete their own threads.

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.delete(endpoints.community.board.threads.delete(101))