Update an evaluation
curl --request PATCH \
--url https://app.autousers.ai/api/v1/evaluations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"teamId": "<string>",
"name": "<string>",
"description": "<string>",
"sharePassword": "<string>",
"shareRequireEmail": true,
"shareRequireName": true,
"shareAllowAnon": true,
"shareExpiry": "<string>",
"allowMultipleRatings": true,
"editorsCanShare": true,
"useProxy": true,
"proxyRegion": "<string>"
}
'import requests
url = "https://app.autousers.ai/api/v1/evaluations/{id}"
payload = {
"id": "<string>",
"teamId": "<string>",
"name": "<string>",
"description": "<string>",
"sharePassword": "<string>",
"shareRequireEmail": True,
"shareRequireName": True,
"shareAllowAnon": True,
"shareExpiry": "<string>",
"allowMultipleRatings": True,
"editorsCanShare": True,
"useProxy": True,
"proxyRegion": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
id: '<string>',
teamId: '<string>',
name: '<string>',
description: '<string>',
sharePassword: '<string>',
shareRequireEmail: true,
shareRequireName: true,
shareAllowAnon: true,
shareExpiry: '<string>',
allowMultipleRatings: true,
editorsCanShare: true,
useProxy: true,
proxyRegion: '<string>'
})
};
fetch('https://app.autousers.ai/api/v1/evaluations/{id}', 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://app.autousers.ai/api/v1/evaluations/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'id' => '<string>',
'teamId' => '<string>',
'name' => '<string>',
'description' => '<string>',
'sharePassword' => '<string>',
'shareRequireEmail' => true,
'shareRequireName' => true,
'shareAllowAnon' => true,
'shareExpiry' => '<string>',
'allowMultipleRatings' => true,
'editorsCanShare' => true,
'useProxy' => true,
'proxyRegion' => '<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://app.autousers.ai/api/v1/evaluations/{id}"
payload := strings.NewReader("{\n \"id\": \"<string>\",\n \"teamId\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"sharePassword\": \"<string>\",\n \"shareRequireEmail\": true,\n \"shareRequireName\": true,\n \"shareAllowAnon\": true,\n \"shareExpiry\": \"<string>\",\n \"allowMultipleRatings\": true,\n \"editorsCanShare\": true,\n \"useProxy\": true,\n \"proxyRegion\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://app.autousers.ai/api/v1/evaluations/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"id\": \"<string>\",\n \"teamId\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"sharePassword\": \"<string>\",\n \"shareRequireEmail\": true,\n \"shareRequireName\": true,\n \"shareAllowAnon\": true,\n \"shareExpiry\": \"<string>\",\n \"allowMultipleRatings\": true,\n \"editorsCanShare\": true,\n \"useProxy\": true,\n \"proxyRegion\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.autousers.ai/api/v1/evaluations/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"id\": \"<string>\",\n \"teamId\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"sharePassword\": \"<string>\",\n \"shareRequireEmail\": true,\n \"shareRequireName\": true,\n \"shareAllowAnon\": true,\n \"shareExpiry\": \"<string>\",\n \"allowMultipleRatings\": true,\n \"editorsCanShare\": true,\n \"useProxy\": true,\n \"proxyRegion\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"teamId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"links": {
"preview": "<string>",
"review": "<string>",
"edit": "<string>",
"results": "<string>",
"share": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}Evaluations
Update an evaluation
PATCH
/
api
/
v1
/
evaluations
/
{id}
Update an evaluation
curl --request PATCH \
--url https://app.autousers.ai/api/v1/evaluations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"teamId": "<string>",
"name": "<string>",
"description": "<string>",
"sharePassword": "<string>",
"shareRequireEmail": true,
"shareRequireName": true,
"shareAllowAnon": true,
"shareExpiry": "<string>",
"allowMultipleRatings": true,
"editorsCanShare": true,
"useProxy": true,
"proxyRegion": "<string>"
}
'import requests
url = "https://app.autousers.ai/api/v1/evaluations/{id}"
payload = {
"id": "<string>",
"teamId": "<string>",
"name": "<string>",
"description": "<string>",
"sharePassword": "<string>",
"shareRequireEmail": True,
"shareRequireName": True,
"shareAllowAnon": True,
"shareExpiry": "<string>",
"allowMultipleRatings": True,
"editorsCanShare": True,
"useProxy": True,
"proxyRegion": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
id: '<string>',
teamId: '<string>',
name: '<string>',
description: '<string>',
sharePassword: '<string>',
shareRequireEmail: true,
shareRequireName: true,
shareAllowAnon: true,
shareExpiry: '<string>',
allowMultipleRatings: true,
editorsCanShare: true,
useProxy: true,
proxyRegion: '<string>'
})
};
fetch('https://app.autousers.ai/api/v1/evaluations/{id}', 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://app.autousers.ai/api/v1/evaluations/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'id' => '<string>',
'teamId' => '<string>',
'name' => '<string>',
'description' => '<string>',
'sharePassword' => '<string>',
'shareRequireEmail' => true,
'shareRequireName' => true,
'shareAllowAnon' => true,
'shareExpiry' => '<string>',
'allowMultipleRatings' => true,
'editorsCanShare' => true,
'useProxy' => true,
'proxyRegion' => '<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://app.autousers.ai/api/v1/evaluations/{id}"
payload := strings.NewReader("{\n \"id\": \"<string>\",\n \"teamId\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"sharePassword\": \"<string>\",\n \"shareRequireEmail\": true,\n \"shareRequireName\": true,\n \"shareAllowAnon\": true,\n \"shareExpiry\": \"<string>\",\n \"allowMultipleRatings\": true,\n \"editorsCanShare\": true,\n \"useProxy\": true,\n \"proxyRegion\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://app.autousers.ai/api/v1/evaluations/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"id\": \"<string>\",\n \"teamId\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"sharePassword\": \"<string>\",\n \"shareRequireEmail\": true,\n \"shareRequireName\": true,\n \"shareAllowAnon\": true,\n \"shareExpiry\": \"<string>\",\n \"allowMultipleRatings\": true,\n \"editorsCanShare\": true,\n \"useProxy\": true,\n \"proxyRegion\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.autousers.ai/api/v1/evaluations/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"id\": \"<string>\",\n \"teamId\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"sharePassword\": \"<string>\",\n \"shareRequireEmail\": true,\n \"shareRequireName\": true,\n \"shareAllowAnon\": true,\n \"shareExpiry\": \"<string>\",\n \"allowMultipleRatings\": true,\n \"editorsCanShare\": true,\n \"useProxy\": true,\n \"proxyRegion\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"teamId": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"links": {
"preview": "<string>",
"review": "<string>",
"edit": "<string>",
"results": "<string>",
"share": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}{
"error": {
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Client-generated idempotency key (≤255 chars). Replays the cached response when the same (team, key) pair sees an identical request body within 24h; returns 409 idempotency_key_reused if the body differs. Recommended for every billable POST.
Maximum string length:
255Date-pinned API version (e.g. 2026-05-04). Omit to receive the latest stable version. Behaves like Stripe's Stripe-Version — pinning a version freezes payload shapes against breaking changes during the 12-month sunset window.
Path Parameters
cuid of the resource
Body
application/json
Required string length:
1 - 200Maximum string length:
2000Available options:
SSE, SxS Available options:
Draft, Running, Ended, Archived Available options:
TEAM_ONLY, AUTOUSERS_LINK, ANYONE_WITH_LINK, PASSWORD_PROTECTED Minimum string length:
1Available options:
CHROME, CAMOUFOX Minimum string length:
1Available options:
gemini-3-flash-preview, gemini-2.5-computer-use-preview-10-2025 Response
Updated
Available options:
SSE, SxS Available options:
Draft, Running, Ended, Archived Available options:
TEAM_ONLY, AUTOUSERS_LINK, ANYONE_WITH_LINK, PASSWORD_PROTECTED Show child attributes
Show child attributes
Was this page helpful?
⌘I