Settings
Update Settings
Update the current user’s preferences. All fields are optional — only provided fields are changed.
PATCH
/
api
/
v1
/
settings
Update Settings
curl --request PATCH \
--url https://api.example.com/api/v1/settings \
--header 'Content-Type: application/json' \
--data '
{
"default_mode": "<string>",
"personality": "<string>",
"timezone": "<string>",
"theo_branding": true
}
'import requests
url = "https://api.example.com/api/v1/settings"
payload = {
"default_mode": "<string>",
"personality": "<string>",
"timezone": "<string>",
"theo_branding": True
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
default_mode: '<string>',
personality: '<string>',
timezone: '<string>',
theo_branding: true
})
};
fetch('https://api.example.com/api/v1/settings', 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.example.com/api/v1/settings",
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([
'default_mode' => '<string>',
'personality' => '<string>',
'timezone' => '<string>',
'theo_branding' => true
]),
CURLOPT_HTTPHEADER => [
"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.example.com/api/v1/settings"
payload := strings.NewReader("{\n \"default_mode\": \"<string>\",\n \"personality\": \"<string>\",\n \"timezone\": \"<string>\",\n \"theo_branding\": true\n}")
req, _ := http.NewRequest("PATCH", url, payload)
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://api.example.com/api/v1/settings")
.header("Content-Type", "application/json")
.body("{\n \"default_mode\": \"<string>\",\n \"personality\": \"<string>\",\n \"timezone\": \"<string>\",\n \"theo_branding\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/settings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"default_mode\": \"<string>\",\n \"personality\": \"<string>\",\n \"timezone\": \"<string>\",\n \"theo_branding\": true\n}"
response = http.request(request)
puts response.read_bodyRequest
Default routing mode. One of:
auto, fast, think, code, research, image, video, roast."theo" or "none".Valid IANA timezone string (e.g.,
"America/New_York").Enable or disable Theo branding in API responses.
Response
Returns the full updated preferences (same shape as GET).Authentication
Requires an API key or a dashboard session. Changes are audited.Example
curl
curl -X PATCH https://www.hitheo.ai/api/v1/settings \
-H "Authorization: Bearer $THEO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"default_mode": "code",
"timezone": "America/New_York"
}'
Was this page helpful?
⌘I
Update Settings
curl --request PATCH \
--url https://api.example.com/api/v1/settings \
--header 'Content-Type: application/json' \
--data '
{
"default_mode": "<string>",
"personality": "<string>",
"timezone": "<string>",
"theo_branding": true
}
'import requests
url = "https://api.example.com/api/v1/settings"
payload = {
"default_mode": "<string>",
"personality": "<string>",
"timezone": "<string>",
"theo_branding": True
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
default_mode: '<string>',
personality: '<string>',
timezone: '<string>',
theo_branding: true
})
};
fetch('https://api.example.com/api/v1/settings', 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.example.com/api/v1/settings",
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([
'default_mode' => '<string>',
'personality' => '<string>',
'timezone' => '<string>',
'theo_branding' => true
]),
CURLOPT_HTTPHEADER => [
"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.example.com/api/v1/settings"
payload := strings.NewReader("{\n \"default_mode\": \"<string>\",\n \"personality\": \"<string>\",\n \"timezone\": \"<string>\",\n \"theo_branding\": true\n}")
req, _ := http.NewRequest("PATCH", url, payload)
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://api.example.com/api/v1/settings")
.header("Content-Type", "application/json")
.body("{\n \"default_mode\": \"<string>\",\n \"personality\": \"<string>\",\n \"timezone\": \"<string>\",\n \"theo_branding\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/settings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"default_mode\": \"<string>\",\n \"personality\": \"<string>\",\n \"timezone\": \"<string>\",\n \"theo_branding\": true\n}"
response = http.request(request)
puts response.read_body