Creates a new discussion board thread.
curl --request POST \
--url https://spaces.nexudus.com/api/public/community/board/threads \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"GroupId": 123,
"Title": "<string>",
"Content": "<string>"
}
'200 OK on success.
POST /api/public/community/board/threads
Authorization: Bearer {token}
Content-Type: application/json
{
"GroupId": 1,
"Title": "Lunch recommendations nearby?",
"Content": "Looking for good lunch spots within walking distance.",
"Tags": ["food", "local"]
}
import endpoints from '@/api/endpoints'
await httpClient.post(endpoints.community.board.threads.create, threadData)
curl --request POST \
--url https://spaces.nexudus.com/api/public/community/board/threads \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"GroupId": 123,
"Title": "<string>",
"Content": "<string>"
}
'