These read endpoints return comments scoped to a specific subject or profession discussion. The server resolves the correct discussion ID internally — you supply the subject or profession ID from your data model, not the raw discussion ID. All three endpoints are publicly accessible without authentication.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Daniel-Stojanovski/finkiopendesk/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/comments/sid/
Returns all comments belonging to the discussion of the given subject.Path parameters
The unique identifier of the subject. The server looks up the subject’s linked discussion and returns its comments.
Response
Returns an array ofCommentDto objects.
Auto-generated UUID for the comment.
Semantic classification of the comment. One of:
COMMENT— a general remarkREPLY— a direct reply to another comment (seeparentId)QUESTION— a question directed at other participantsIMPORTANT— flagged as important by the author
The full text body of the comment.
ID of the subject whose discussion this comment belongs to.
null if the comment is in a profession discussion or channel.ID of the profession whose discussion this comment belongs to.
null for subject discussion comments.ID of the channel this comment belongs to.
null for discussion comments.ID of the parent comment when
type is REPLY. null for top-level comments.The author of the comment.
GET /api/comments/pid/
Returns all comments belonging to the discussion of the given profession.Path parameters
The unique identifier of the profession. The server looks up the profession’s linked discussion and returns its comments.
Response
An array ofCommentDto objects — same schema as described above. Comments in a profession discussion will have professionId populated and subjectId set to null.
GET /api/comments
Returns every comment stored in the platform across all discussions and channels.This endpoint is intended for administrative use. It returns unbounded data and may be slow for large datasets. Prefer the subject or profession scoped endpoints for production UI use.
Response
An array of allCommentDto objects — same schema as described above.