Skip to main content
PUT
/
v1
/
run
/
{run_id}
/
evaluation
/
{evaluation_id}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "account_id": "<string>",
  "run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "output_name": "<string>",
  "field_path": "<string>",
  "evaluation_label_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "value": 123,
  "created_by": "<string>",
  "created_by_evaluator_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_by": "<string>",
  "updated_at": "2023-11-07T05:31:56Z"
}
Update an existing evaluation for a run. Only the evaluation value can be modified; other fields like the evaluation label cannot be changed after creation.

Authorizations

Authorization
string
header
required

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

Path Parameters

run_id
string<uuid>
required

The ID of the run

evaluation_id
string<uuid>
required

The ID of the evaluation

Body

application/json
value
number

Response

Evaluation updated successfully

id
string<uuid>
required

Unique identifier for the run evaluation

account_id
string
required

ID of the account that owns this evaluation

run_id
string<uuid>
required

ID of the run being evaluated

evaluation_label_id
string<uuid>
required

ID of the evaluation label used

value
number
required

The evaluation value

created_at
string<date-time>
required

When the evaluation was created

output_name
string | null

Name of the output being evaluated

field_path
string | null

JSON path to the specific field being evaluated

created_by
string | null

ID of the user who created the evaluation

created_by_evaluator_id
string<uuid> | null

ID of the evaluator that created this evaluation

updated_by
string | null

ID of the user who last updated the evaluation

updated_at
string<date-time>

When the evaluation was last updated

I