curl --request PUT \
--url https://api.eigenpal.com/v1/runs/{id}/reviews \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"note": "<string>",
"correctedOutput": "<unknown>",
"corrections": [
{
"path": "<string>",
"id": "<string>",
"label": "<string>",
"originalValue": "<unknown>",
"correctedValue": "<unknown>",
"note": "<string>",
"correctedArtifactPath": "<string>"
}
]
}
'import requests
url = "https://api.eigenpal.com/v1/runs/{id}/reviews"
payload = {
"note": "<string>",
"correctedOutput": "<unknown>",
"corrections": [
{
"path": "<string>",
"id": "<string>",
"label": "<string>",
"originalValue": "<unknown>",
"correctedValue": "<unknown>",
"note": "<string>",
"correctedArtifactPath": "<string>"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
note: '<string>',
correctedOutput: '<unknown>',
corrections: [
{
path: '<string>',
id: '<string>',
label: '<string>',
originalValue: '<unknown>',
correctedValue: '<unknown>',
note: '<string>',
correctedArtifactPath: '<string>'
}
]
})
};
fetch('https://api.eigenpal.com/v1/runs/{id}/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eigenpal.com/v1/runs/{id}/reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'note' => '<string>',
'correctedOutput' => '<unknown>',
'corrections' => [
[
'path' => '<string>',
'id' => '<string>',
'label' => '<string>',
'originalValue' => '<unknown>',
'correctedValue' => '<unknown>',
'note' => '<string>',
'correctedArtifactPath' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.eigenpal.com/v1/runs/{id}/reviews"
payload := strings.NewReader("{\n \"note\": \"<string>\",\n \"correctedOutput\": \"<unknown>\",\n \"corrections\": [\n {\n \"path\": \"<string>\",\n \"id\": \"<string>\",\n \"label\": \"<string>\",\n \"originalValue\": \"<unknown>\",\n \"correctedValue\": \"<unknown>\",\n \"note\": \"<string>\",\n \"correctedArtifactPath\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.eigenpal.com/v1/runs/{id}/reviews")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"note\": \"<string>\",\n \"correctedOutput\": \"<unknown>\",\n \"corrections\": [\n {\n \"path\": \"<string>\",\n \"id\": \"<string>\",\n \"label\": \"<string>\",\n \"originalValue\": \"<unknown>\",\n \"correctedValue\": \"<unknown>\",\n \"note\": \"<string>\",\n \"correctedArtifactPath\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eigenpal.com/v1/runs/{id}/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"note\": \"<string>\",\n \"correctedOutput\": \"<unknown>\",\n \"corrections\": [\n {\n \"path\": \"<string>\",\n \"id\": \"<string>\",\n \"label\": \"<string>\",\n \"originalValue\": \"<unknown>\",\n \"correctedValue\": \"<unknown>\",\n \"note\": \"<string>\",\n \"correctedArtifactPath\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"review": {
"id": "<string>",
"verdict": "correct",
"status": "open",
"note": "<string>",
"reviewedBy": "<string>",
"reviewedByEmail": "<string>",
"reviewedAt": "<string>",
"closedBy": "<string>",
"closedByEmail": "<string>",
"closedAt": "<string>",
"closedNote": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"corrections": [
{
"id": "<string>",
"kind": "field",
"path": "<string>",
"label": "<string>",
"note": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"originalValue": null,
"correctedValue": null,
"correctedArtifactPath": "<string>"
}
],
"correctedOutput": null
}
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}Update run review
Create or replace review metadata for a run.
curl --request PUT \
--url https://api.eigenpal.com/v1/runs/{id}/reviews \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"note": "<string>",
"correctedOutput": "<unknown>",
"corrections": [
{
"path": "<string>",
"id": "<string>",
"label": "<string>",
"originalValue": "<unknown>",
"correctedValue": "<unknown>",
"note": "<string>",
"correctedArtifactPath": "<string>"
}
]
}
'import requests
url = "https://api.eigenpal.com/v1/runs/{id}/reviews"
payload = {
"note": "<string>",
"correctedOutput": "<unknown>",
"corrections": [
{
"path": "<string>",
"id": "<string>",
"label": "<string>",
"originalValue": "<unknown>",
"correctedValue": "<unknown>",
"note": "<string>",
"correctedArtifactPath": "<string>"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
note: '<string>',
correctedOutput: '<unknown>',
corrections: [
{
path: '<string>',
id: '<string>',
label: '<string>',
originalValue: '<unknown>',
correctedValue: '<unknown>',
note: '<string>',
correctedArtifactPath: '<string>'
}
]
})
};
fetch('https://api.eigenpal.com/v1/runs/{id}/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eigenpal.com/v1/runs/{id}/reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'note' => '<string>',
'correctedOutput' => '<unknown>',
'corrections' => [
[
'path' => '<string>',
'id' => '<string>',
'label' => '<string>',
'originalValue' => '<unknown>',
'correctedValue' => '<unknown>',
'note' => '<string>',
'correctedArtifactPath' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.eigenpal.com/v1/runs/{id}/reviews"
payload := strings.NewReader("{\n \"note\": \"<string>\",\n \"correctedOutput\": \"<unknown>\",\n \"corrections\": [\n {\n \"path\": \"<string>\",\n \"id\": \"<string>\",\n \"label\": \"<string>\",\n \"originalValue\": \"<unknown>\",\n \"correctedValue\": \"<unknown>\",\n \"note\": \"<string>\",\n \"correctedArtifactPath\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.eigenpal.com/v1/runs/{id}/reviews")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"note\": \"<string>\",\n \"correctedOutput\": \"<unknown>\",\n \"corrections\": [\n {\n \"path\": \"<string>\",\n \"id\": \"<string>\",\n \"label\": \"<string>\",\n \"originalValue\": \"<unknown>\",\n \"correctedValue\": \"<unknown>\",\n \"note\": \"<string>\",\n \"correctedArtifactPath\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eigenpal.com/v1/runs/{id}/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"note\": \"<string>\",\n \"correctedOutput\": \"<unknown>\",\n \"corrections\": [\n {\n \"path\": \"<string>\",\n \"id\": \"<string>\",\n \"label\": \"<string>\",\n \"originalValue\": \"<unknown>\",\n \"correctedValue\": \"<unknown>\",\n \"note\": \"<string>\",\n \"correctedArtifactPath\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"review": {
"id": "<string>",
"verdict": "correct",
"status": "open",
"note": "<string>",
"reviewedBy": "<string>",
"reviewedByEmail": "<string>",
"reviewedAt": "<string>",
"closedBy": "<string>",
"closedByEmail": "<string>",
"closedAt": "<string>",
"closedNote": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"corrections": [
{
"id": "<string>",
"kind": "field",
"path": "<string>",
"label": "<string>",
"note": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"originalValue": null,
"correctedValue": null,
"correctedArtifactPath": "<string>"
}
],
"correctedOutput": null
}
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>",
"severity": "error"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}Authorizations
API key issued from Settings → API Keys. Pass as Authorization: Bearer <key>.
Path Parameters
Run id.
Body
Create or replace review metadata for a run. Attribution fields (reviewedBy, closedBy, and their emails) are read-only and populated from the authenticated user or API key creator.
Reviewer verdict. Omit or send null for feedback without a ranking (nit). Defaults are applied client-side only; any verdict/status combination is accepted.
correct, incorrect Review lifecycle. Defaults from verdict (correct → closed, otherwise open). Use closed or wont_fix to close an open review.
open, closed, wont_fix Reviewer note.
Corrected JSON output for this run. Send null to clear a previously stored correction.
Field and file corrections. When present, replaces the entire correction set for this review. Omit to leave existing corrections unchanged.
Show child attributes
Show child attributes
Response
Updated run review metadata.
Review metadata and corrections. Corrected files are listed separately at GET /runs/{id}/reviews/expected.
Show child attributes
Show child attributes