Update agent settings
curl --request PUT \
--url https://api.mnemom.ai/v1/agents/{agent_id}/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"aap_enabled": true,
"aip_enabled": true,
"proof_enabled": true,
"proof_rate": 50,
"analyze_output": true
}
'import requests
url = "https://api.mnemom.ai/v1/agents/{agent_id}/settings"
payload = {
"aap_enabled": True,
"aip_enabled": True,
"proof_enabled": True,
"proof_rate": 50,
"analyze_output": True
}
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({
aap_enabled: true,
aip_enabled: true,
proof_enabled: true,
proof_rate: 50,
analyze_output: true
})
};
fetch('https://api.mnemom.ai/v1/agents/{agent_id}/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.mnemom.ai/v1/agents/{agent_id}/settings",
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([
'aap_enabled' => true,
'aip_enabled' => true,
'proof_enabled' => true,
'proof_rate' => 50,
'analyze_output' => true
]),
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.mnemom.ai/v1/agents/{agent_id}/settings"
payload := strings.NewReader("{\n \"aap_enabled\": true,\n \"aip_enabled\": true,\n \"proof_enabled\": true,\n \"proof_rate\": 50,\n \"analyze_output\": true\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.mnemom.ai/v1/agents/{agent_id}/settings")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"aap_enabled\": true,\n \"aip_enabled\": true,\n \"proof_enabled\": true,\n \"proof_rate\": 50,\n \"analyze_output\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/agents/{agent_id}/settings")
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 \"aap_enabled\": true,\n \"aip_enabled\": true,\n \"proof_enabled\": true,\n \"proof_rate\": 50,\n \"analyze_output\": true\n}"
response = http.request(request)
puts response.read_body{
"agent_id": "<string>",
"aap_enabled": true,
"aip_enabled": true,
"proof_enabled": true,
"proof_rate": 50,
"analyze_output": true,
"updated": true
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Agents
Update agent settings
Partial update — include only the fields to change.
PUT
/
agents
/
{agent_id}
/
settings
Update agent settings
curl --request PUT \
--url https://api.mnemom.ai/v1/agents/{agent_id}/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"aap_enabled": true,
"aip_enabled": true,
"proof_enabled": true,
"proof_rate": 50,
"analyze_output": true
}
'import requests
url = "https://api.mnemom.ai/v1/agents/{agent_id}/settings"
payload = {
"aap_enabled": True,
"aip_enabled": True,
"proof_enabled": True,
"proof_rate": 50,
"analyze_output": True
}
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({
aap_enabled: true,
aip_enabled: true,
proof_enabled: true,
proof_rate: 50,
analyze_output: true
})
};
fetch('https://api.mnemom.ai/v1/agents/{agent_id}/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.mnemom.ai/v1/agents/{agent_id}/settings",
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([
'aap_enabled' => true,
'aip_enabled' => true,
'proof_enabled' => true,
'proof_rate' => 50,
'analyze_output' => true
]),
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.mnemom.ai/v1/agents/{agent_id}/settings"
payload := strings.NewReader("{\n \"aap_enabled\": true,\n \"aip_enabled\": true,\n \"proof_enabled\": true,\n \"proof_rate\": 50,\n \"analyze_output\": true\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.mnemom.ai/v1/agents/{agent_id}/settings")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"aap_enabled\": true,\n \"aip_enabled\": true,\n \"proof_enabled\": true,\n \"proof_rate\": 50,\n \"analyze_output\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/agents/{agent_id}/settings")
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 \"aap_enabled\": true,\n \"aip_enabled\": true,\n \"proof_enabled\": true,\n \"proof_rate\": 50,\n \"analyze_output\": true\n}"
response = http.request(request)
puts response.read_body{
"agent_id": "<string>",
"aap_enabled": true,
"aip_enabled": true,
"proof_enabled": true,
"proof_rate": 50,
"analyze_output": true,
"updated": true
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Authorizations
BearerAuthApiKeyAuthCookieAuth
Supabase JWT token in Authorization: Bearer header
Path Parameters
Agent identifier (e.g. smolt-abc123)
Body
application/json
Requires zk_proofs feature flag.
Percentage of checkpoints to prove (0–100).
Required range:
0 <= x <= 100Available options:
always, sampling, threshold, off Non-off values require reconciliation feature flag.
Available options:
off, flag, auto-suggest, auto-apply Response
Settings updated.
Per-agent observability + enforcement knobs.
Required range:
0 <= x <= 100Available options:
always, sampling, threshold, off Available options:
off, flag, auto-suggest, auto-apply Get agent observability + enforcement settingsRuntime composite — alignment + protection + capabilities in one call
⌘I