GET
/
evaluator
/
v1
/
evaluation-data
/
comment
curl --request GET \
  --url https://api.aceaicompany.com/evaluator/v1/evaluation-data/comment \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "commenter": "<string>",
    "body": "<string>",
    "evaluationDataId": 123,
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Purpose: Retrieves comments for a specific evaluation data entry using the evalDataId query parameter.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

evalDataId
integer
required

Identifier of the evaluation data entry for which to retrieve comments.

Response

200
application/json
Comments retrieved successfully.
id
integer
commenter
string
body
string
evaluationDataId
integer
createdAt
string