POST
/
evaluator
/
v1
/
evaluation-data
/
comment
curl --request POST \
  --url https://api.aceaicompany.com/evaluator/v1/evaluation-data/comment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "commenter": "<string>",
  "body": "<string>",
  "evaluationDataId": 123
}'
{
  "result": "<string>"
}

Purpose: Adds a new comment to an evaluation data entry.

Authorizations

Authorization
string
header
required

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

Body

application/json
Comment details.

Request payload for posting a new comment on evaluation data.

commenter
string
required
body
string
required
evaluationDataId
integer
required

Response

200
application/json
Comment added successfully.

Response after posting a new comment.

result
string
required

A confirmation message for successful comment creation.