Skip to main content
GET
/
v1
/
findings
/
{finding_id}
/
comments
List Finding Comments
curl --request GET \
  --url https://api.mindfort.app/v1/findings/{finding_id}/comments \
  --header 'Authorization: Bearer <token>'
{
  "comments": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "finding_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "content": "<string>",
      "user_id": "<string>",
      "username": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.mindfort.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key generated from the MindFort dashboard. Pass as Authorization: Bearer <your-api-key>.

Path Parameters

finding_id
string<uuid>
required

UUID of the finding

Query Parameters

limit
integer
default:25

Maximum number of comments to return

Required range: 1 <= x <= 100
offset
integer
default:0

Number of records to skip for offset pagination

Required range: x >= 0

Response

Comments returned successfully

comments
object[]
total
integer

Total comments on the finding

limit
integer

Maximum comments returned

offset
integer

Number of comments skipped