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

Purpose: Updates an existing comment on an evaluation data entry. The commenter in the request must match the original commenter.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Unique identifier of the comment to update.

Body

application/json

Updated comment details.

Request payload for updating an evaluation data comment.

Response

200
application/json

Comment updated successfully.

Response after updating an evaluation data comment.