Update Evaluator
curl --request POST \
--url https://api.heify.com/update-evaluator \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"evaluator_id": "cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887",
"description": "descripcion cambiada",
"language": "eu",
"context": "cambiado",
"criteria": [
{
"id": "141aceae-9fe2-4e55-80c7-707b0aeb9bff",
"name": "Saludo Corporativodf",
"description": "El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.",
"type": "scale",
"weight": 54
},
{
"id": "a2b542de-a06a-44ea-9975-20cab95ccaa8",
"name": "Verificación de Identidad",
"description": "El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.",
"type": "strict",
"weight": 0
},
{
"id": "228dc9a9-30a4-447a-9b0e-7ef01904fc2c",
"name": "Empatía",
"description": "El agente muestra comprensión ante la situación del cliente.",
"type": "boolean",
"weight": 42
},
{
"name": "New Criterion",
"description": "New criterion added during update — no id provided.",
"type": "boolean",
"weight": 4
}
]
}
'import requests
url = "https://api.heify.com/update-evaluator"
payload = {
"evaluator_id": "cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887",
"description": "descripcion cambiada",
"language": "eu",
"context": "cambiado",
"criteria": [
{
"id": "141aceae-9fe2-4e55-80c7-707b0aeb9bff",
"name": "Saludo Corporativodf",
"description": "El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.",
"type": "scale",
"weight": 54
},
{
"id": "a2b542de-a06a-44ea-9975-20cab95ccaa8",
"name": "Verificación de Identidad",
"description": "El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.",
"type": "strict",
"weight": 0
},
{
"id": "228dc9a9-30a4-447a-9b0e-7ef01904fc2c",
"name": "Empatía",
"description": "El agente muestra comprensión ante la situación del cliente.",
"type": "boolean",
"weight": 42
},
{
"name": "New Criterion",
"description": "New criterion added during update — no id provided.",
"type": "boolean",
"weight": 4
}
]
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
evaluator_id: 'cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887',
description: 'descripcion cambiada',
language: 'eu',
context: 'cambiado',
criteria: [
{
id: '141aceae-9fe2-4e55-80c7-707b0aeb9bff',
name: 'Saludo Corporativodf',
description: 'El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.',
type: 'scale',
weight: 54
},
{
id: 'a2b542de-a06a-44ea-9975-20cab95ccaa8',
name: 'Verificación de Identidad',
description: 'El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.',
type: 'strict',
weight: 0
},
{
id: '228dc9a9-30a4-447a-9b0e-7ef01904fc2c',
name: 'Empatía',
description: 'El agente muestra comprensión ante la situación del cliente.',
type: 'boolean',
weight: 42
},
{
name: 'New Criterion',
description: 'New criterion added during update — no id provided.',
type: 'boolean',
weight: 4
}
]
})
};
fetch('https://api.heify.com/update-evaluator', 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.heify.com/update-evaluator",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'evaluator_id' => 'cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887',
'description' => 'descripcion cambiada',
'language' => 'eu',
'context' => 'cambiado',
'criteria' => [
[
'id' => '141aceae-9fe2-4e55-80c7-707b0aeb9bff',
'name' => 'Saludo Corporativodf',
'description' => 'El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.',
'type' => 'scale',
'weight' => 54
],
[
'id' => 'a2b542de-a06a-44ea-9975-20cab95ccaa8',
'name' => 'Verificación de Identidad',
'description' => 'El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.',
'type' => 'strict',
'weight' => 0
],
[
'id' => '228dc9a9-30a4-447a-9b0e-7ef01904fc2c',
'name' => 'Empatía',
'description' => 'El agente muestra comprensión ante la situación del cliente.',
'type' => 'boolean',
'weight' => 42
],
[
'name' => 'New Criterion',
'description' => 'New criterion added during update — no id provided.',
'type' => 'boolean',
'weight' => 4
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$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.heify.com/update-evaluator"
payload := strings.NewReader("{\n \"evaluator_id\": \"cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887\",\n \"description\": \"descripcion cambiada\",\n \"language\": \"eu\",\n \"context\": \"cambiado\",\n \"criteria\": [\n {\n \"id\": \"141aceae-9fe2-4e55-80c7-707b0aeb9bff\",\n \"name\": \"Saludo Corporativodf\",\n \"description\": \"El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.\",\n \"type\": \"scale\",\n \"weight\": 54\n },\n {\n \"id\": \"a2b542de-a06a-44ea-9975-20cab95ccaa8\",\n \"name\": \"Verificación de Identidad\",\n \"description\": \"El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.\",\n \"type\": \"strict\",\n \"weight\": 0\n },\n {\n \"id\": \"228dc9a9-30a4-447a-9b0e-7ef01904fc2c\",\n \"name\": \"Empatía\",\n \"description\": \"El agente muestra comprensión ante la situación del cliente.\",\n \"type\": \"boolean\",\n \"weight\": 42\n },\n {\n \"name\": \"New Criterion\",\n \"description\": \"New criterion added during update — no id provided.\",\n \"type\": \"boolean\",\n \"weight\": 4\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
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.post("https://api.heify.com/update-evaluator")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"evaluator_id\": \"cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887\",\n \"description\": \"descripcion cambiada\",\n \"language\": \"eu\",\n \"context\": \"cambiado\",\n \"criteria\": [\n {\n \"id\": \"141aceae-9fe2-4e55-80c7-707b0aeb9bff\",\n \"name\": \"Saludo Corporativodf\",\n \"description\": \"El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.\",\n \"type\": \"scale\",\n \"weight\": 54\n },\n {\n \"id\": \"a2b542de-a06a-44ea-9975-20cab95ccaa8\",\n \"name\": \"Verificación de Identidad\",\n \"description\": \"El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.\",\n \"type\": \"strict\",\n \"weight\": 0\n },\n {\n \"id\": \"228dc9a9-30a4-447a-9b0e-7ef01904fc2c\",\n \"name\": \"Empatía\",\n \"description\": \"El agente muestra comprensión ante la situación del cliente.\",\n \"type\": \"boolean\",\n \"weight\": 42\n },\n {\n \"name\": \"New Criterion\",\n \"description\": \"New criterion added during update — no id provided.\",\n \"type\": \"boolean\",\n \"weight\": 4\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.heify.com/update-evaluator")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"evaluator_id\": \"cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887\",\n \"description\": \"descripcion cambiada\",\n \"language\": \"eu\",\n \"context\": \"cambiado\",\n \"criteria\": [\n {\n \"id\": \"141aceae-9fe2-4e55-80c7-707b0aeb9bff\",\n \"name\": \"Saludo Corporativodf\",\n \"description\": \"El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.\",\n \"type\": \"scale\",\n \"weight\": 54\n },\n {\n \"id\": \"a2b542de-a06a-44ea-9975-20cab95ccaa8\",\n \"name\": \"Verificación de Identidad\",\n \"description\": \"El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.\",\n \"type\": \"strict\",\n \"weight\": 0\n },\n {\n \"id\": \"228dc9a9-30a4-447a-9b0e-7ef01904fc2c\",\n \"name\": \"Empatía\",\n \"description\": \"El agente muestra comprensión ante la situación del cliente.\",\n \"type\": \"boolean\",\n \"weight\": 42\n },\n {\n \"name\": \"New Criterion\",\n \"description\": \"New criterion added during update — no id provided.\",\n \"type\": \"boolean\",\n \"weight\": 4\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"message": "Evaluator updated successfully",
"evaluator": {
"evaluator_id": "cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887",
"tag": "nombree",
"description": "descripcion cambiada",
"language": "eu",
"context": "cambiado",
"criteria": [
{
"id": "141aceae-9fe2-4e55-80c7-707b0aeb9bff",
"name": "Saludo Corporativodf",
"description": "El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.",
"type": "scale",
"weight": 54
},
{
"id": "a2b542de-a06a-44ea-9975-20cab95ccaa8",
"name": "Verificación de Identidad",
"description": "El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.",
"type": "strict",
"weight": 0
},
{
"id": "228dc9a9-30a4-447a-9b0e-7ef01904fc2c",
"name": "Empatía",
"description": "El agente muestra comprensión ante la situación del cliente.",
"type": "boolean",
"weight": 42
},
{
"id": "932f8c81-044e-405e-8a9c-493003e1f4e5",
"name": "New Criterion",
"description": "New criterion added during update — no id provided.",
"type": "boolean",
"weight": 4
}
],
"created_at": "2026-03-21T15:50:25.898670+00:00"
}
}
}Evaluators
Update Evaluator
Update an evaluator’s description, language, context, or criteria.
POST
/
update-evaluator
Update Evaluator
curl --request POST \
--url https://api.heify.com/update-evaluator \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"evaluator_id": "cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887",
"description": "descripcion cambiada",
"language": "eu",
"context": "cambiado",
"criteria": [
{
"id": "141aceae-9fe2-4e55-80c7-707b0aeb9bff",
"name": "Saludo Corporativodf",
"description": "El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.",
"type": "scale",
"weight": 54
},
{
"id": "a2b542de-a06a-44ea-9975-20cab95ccaa8",
"name": "Verificación de Identidad",
"description": "El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.",
"type": "strict",
"weight": 0
},
{
"id": "228dc9a9-30a4-447a-9b0e-7ef01904fc2c",
"name": "Empatía",
"description": "El agente muestra comprensión ante la situación del cliente.",
"type": "boolean",
"weight": 42
},
{
"name": "New Criterion",
"description": "New criterion added during update — no id provided.",
"type": "boolean",
"weight": 4
}
]
}
'import requests
url = "https://api.heify.com/update-evaluator"
payload = {
"evaluator_id": "cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887",
"description": "descripcion cambiada",
"language": "eu",
"context": "cambiado",
"criteria": [
{
"id": "141aceae-9fe2-4e55-80c7-707b0aeb9bff",
"name": "Saludo Corporativodf",
"description": "El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.",
"type": "scale",
"weight": 54
},
{
"id": "a2b542de-a06a-44ea-9975-20cab95ccaa8",
"name": "Verificación de Identidad",
"description": "El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.",
"type": "strict",
"weight": 0
},
{
"id": "228dc9a9-30a4-447a-9b0e-7ef01904fc2c",
"name": "Empatía",
"description": "El agente muestra comprensión ante la situación del cliente.",
"type": "boolean",
"weight": 42
},
{
"name": "New Criterion",
"description": "New criterion added during update — no id provided.",
"type": "boolean",
"weight": 4
}
]
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
evaluator_id: 'cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887',
description: 'descripcion cambiada',
language: 'eu',
context: 'cambiado',
criteria: [
{
id: '141aceae-9fe2-4e55-80c7-707b0aeb9bff',
name: 'Saludo Corporativodf',
description: 'El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.',
type: 'scale',
weight: 54
},
{
id: 'a2b542de-a06a-44ea-9975-20cab95ccaa8',
name: 'Verificación de Identidad',
description: 'El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.',
type: 'strict',
weight: 0
},
{
id: '228dc9a9-30a4-447a-9b0e-7ef01904fc2c',
name: 'Empatía',
description: 'El agente muestra comprensión ante la situación del cliente.',
type: 'boolean',
weight: 42
},
{
name: 'New Criterion',
description: 'New criterion added during update — no id provided.',
type: 'boolean',
weight: 4
}
]
})
};
fetch('https://api.heify.com/update-evaluator', 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.heify.com/update-evaluator",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'evaluator_id' => 'cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887',
'description' => 'descripcion cambiada',
'language' => 'eu',
'context' => 'cambiado',
'criteria' => [
[
'id' => '141aceae-9fe2-4e55-80c7-707b0aeb9bff',
'name' => 'Saludo Corporativodf',
'description' => 'El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.',
'type' => 'scale',
'weight' => 54
],
[
'id' => 'a2b542de-a06a-44ea-9975-20cab95ccaa8',
'name' => 'Verificación de Identidad',
'description' => 'El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.',
'type' => 'strict',
'weight' => 0
],
[
'id' => '228dc9a9-30a4-447a-9b0e-7ef01904fc2c',
'name' => 'Empatía',
'description' => 'El agente muestra comprensión ante la situación del cliente.',
'type' => 'boolean',
'weight' => 42
],
[
'name' => 'New Criterion',
'description' => 'New criterion added during update — no id provided.',
'type' => 'boolean',
'weight' => 4
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$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.heify.com/update-evaluator"
payload := strings.NewReader("{\n \"evaluator_id\": \"cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887\",\n \"description\": \"descripcion cambiada\",\n \"language\": \"eu\",\n \"context\": \"cambiado\",\n \"criteria\": [\n {\n \"id\": \"141aceae-9fe2-4e55-80c7-707b0aeb9bff\",\n \"name\": \"Saludo Corporativodf\",\n \"description\": \"El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.\",\n \"type\": \"scale\",\n \"weight\": 54\n },\n {\n \"id\": \"a2b542de-a06a-44ea-9975-20cab95ccaa8\",\n \"name\": \"Verificación de Identidad\",\n \"description\": \"El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.\",\n \"type\": \"strict\",\n \"weight\": 0\n },\n {\n \"id\": \"228dc9a9-30a4-447a-9b0e-7ef01904fc2c\",\n \"name\": \"Empatía\",\n \"description\": \"El agente muestra comprensión ante la situación del cliente.\",\n \"type\": \"boolean\",\n \"weight\": 42\n },\n {\n \"name\": \"New Criterion\",\n \"description\": \"New criterion added during update — no id provided.\",\n \"type\": \"boolean\",\n \"weight\": 4\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
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.post("https://api.heify.com/update-evaluator")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"evaluator_id\": \"cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887\",\n \"description\": \"descripcion cambiada\",\n \"language\": \"eu\",\n \"context\": \"cambiado\",\n \"criteria\": [\n {\n \"id\": \"141aceae-9fe2-4e55-80c7-707b0aeb9bff\",\n \"name\": \"Saludo Corporativodf\",\n \"description\": \"El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.\",\n \"type\": \"scale\",\n \"weight\": 54\n },\n {\n \"id\": \"a2b542de-a06a-44ea-9975-20cab95ccaa8\",\n \"name\": \"Verificación de Identidad\",\n \"description\": \"El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.\",\n \"type\": \"strict\",\n \"weight\": 0\n },\n {\n \"id\": \"228dc9a9-30a4-447a-9b0e-7ef01904fc2c\",\n \"name\": \"Empatía\",\n \"description\": \"El agente muestra comprensión ante la situación del cliente.\",\n \"type\": \"boolean\",\n \"weight\": 42\n },\n {\n \"name\": \"New Criterion\",\n \"description\": \"New criterion added during update — no id provided.\",\n \"type\": \"boolean\",\n \"weight\": 4\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.heify.com/update-evaluator")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"evaluator_id\": \"cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887\",\n \"description\": \"descripcion cambiada\",\n \"language\": \"eu\",\n \"context\": \"cambiado\",\n \"criteria\": [\n {\n \"id\": \"141aceae-9fe2-4e55-80c7-707b0aeb9bff\",\n \"name\": \"Saludo Corporativodf\",\n \"description\": \"El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.\",\n \"type\": \"scale\",\n \"weight\": 54\n },\n {\n \"id\": \"a2b542de-a06a-44ea-9975-20cab95ccaa8\",\n \"name\": \"Verificación de Identidad\",\n \"description\": \"El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.\",\n \"type\": \"strict\",\n \"weight\": 0\n },\n {\n \"id\": \"228dc9a9-30a4-447a-9b0e-7ef01904fc2c\",\n \"name\": \"Empatía\",\n \"description\": \"El agente muestra comprensión ante la situación del cliente.\",\n \"type\": \"boolean\",\n \"weight\": 42\n },\n {\n \"name\": \"New Criterion\",\n \"description\": \"New criterion added during update — no id provided.\",\n \"type\": \"boolean\",\n \"weight\": 4\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"message": "Evaluator updated successfully",
"evaluator": {
"evaluator_id": "cd9e6ef7-fd3c-4cf1-9dd5-a5d5dbc8e887",
"tag": "nombree",
"description": "descripcion cambiada",
"language": "eu",
"context": "cambiado",
"criteria": [
{
"id": "141aceae-9fe2-4e55-80c7-707b0aeb9bff",
"name": "Saludo Corporativodf",
"description": "El agente debe presentarse con su nombre completo, indicar el nombre de la empresa y dar la bienvenida al cliente.",
"type": "scale",
"weight": 54
},
{
"id": "a2b542de-a06a-44ea-9975-20cab95ccaa8",
"name": "Verificación de Identidad",
"description": "El agente debe verificar la identidad del cliente solicitando al menos dos datos personales.",
"type": "strict",
"weight": 0
},
{
"id": "228dc9a9-30a4-447a-9b0e-7ef01904fc2c",
"name": "Empatía",
"description": "El agente muestra comprensión ante la situación del cliente.",
"type": "boolean",
"weight": 42
},
{
"id": "932f8c81-044e-405e-8a9c-493003e1f4e5",
"name": "New Criterion",
"description": "New criterion added during update — no id provided.",
"type": "boolean",
"weight": 4
}
],
"created_at": "2026-03-21T15:50:25.898670+00:00"
}
}
}Criteria not included in the request will be permanently deleted. Always send the full list of criteria you want to keep, not just the changes. See Evaluator — criteria.
tag cannot be changed after creation.To update an existing criterion, include its
id. To add a new one, omit id. Providing an id that does not belong to this evaluator returns 400.Non-
strict criteria weights must still sum to exactly 100 after the update. See Evaluator — weights.Returns
404 if the evaluator is not found.Authorizations
Body
application/json
Request body for updating an evaluator. All fields except evaluator_id are optional — omit any field to leave it unchanged.
The evaluator to update.
New description. Max 250 characters. Omit to leave unchanged.
Maximum string length:
250New language code for the evaluator. Omit to leave unchanged. See Evaluator — language.
Updated AI context prompt. Max 1000 characters. Omit to leave unchanged. See Evaluator — context.
Maximum string length:
1000Full replacement list of criteria using merge-by-ID logic. Criteria not included will be permanently deleted. Min 1, max 10.
Show child attributes
Show child attributes
Response
200 - application/json
Evaluator updated successfully.
Show child attributes
Show child attributes
⌘I