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

Purpose: Updates evaluation data fields such as tags, status, data, and rating for a specific evaluation data entry.

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 evaluation data entry.

Body

application/json
Fields to update in the evaluation data entry.

Request payload for updating an evaluation data entry.

tags
string[]
status
string
data
object
rating
integer

Response

200
application/json
Evaluation data updated successfully.

Response after updating an evaluation data entry.

result
string
required

A confirmation message for successful update.