Public API Reference
Public API details and usage examples for the Members Portal
Creates a new discussion board thread.
cURL
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>" } '
Documentation IndexFetch the complete documentation index at: https://learn.nexudus.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
200 OK
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)
Was this page helpful?