Skip to main content
PATCH
/
api
/
autopilots
/
{autopilot}
Update one autopilot.
curl --request PATCH \
  --url https://openagents.com/api/autopilots/{autopilot} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "avatar": "<string>",
  "displayName": "Autopilot",
  "policy": {
    "dataPolicy": {},
    "l402AllowedHosts": [
      "<string>"
    ],
    "l402MaxSpendMsatsPerCall": 123,
    "l402MaxSpendMsatsPerDay": 123,
    "l402RequireApproval": true,
    "model": "<string>",
    "modelProvider": "<string>",
    "toolAllowlist": [
      "<string>"
    ],
    "toolDenylist": [
      "<string>"
    ]
  },
  "profile": {
    "autopilotVoice": "<string>",
    "onboardingAnswers": {},
    "ownerDisplayName": "<string>",
    "personaSummary": "<string>",
    "preferences": {},
    "principles": [
      "<string>"
    ],
    "schemaVersion": 123
  },
  "status": "active",
  "tagline": "<string>",
  "visibility": "private"
}
'
import requests

url = "https://openagents.com/api/autopilots/{autopilot}"

payload = {
"avatar": "<string>",
"displayName": "Autopilot",
"policy": {
"dataPolicy": {},
"l402AllowedHosts": ["<string>"],
"l402MaxSpendMsatsPerCall": 123,
"l402MaxSpendMsatsPerDay": 123,
"l402RequireApproval": True,
"model": "<string>",
"modelProvider": "<string>",
"toolAllowlist": ["<string>"],
"toolDenylist": ["<string>"]
},
"profile": {
"autopilotVoice": "<string>",
"onboardingAnswers": {},
"ownerDisplayName": "<string>",
"personaSummary": "<string>",
"preferences": {},
"principles": ["<string>"],
"schemaVersion": 123
},
"status": "active",
"tagline": "<string>",
"visibility": "private"
}
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({
avatar: '<string>',
displayName: 'Autopilot',
policy: {
dataPolicy: {},
l402AllowedHosts: ['<string>'],
l402MaxSpendMsatsPerCall: 123,
l402MaxSpendMsatsPerDay: 123,
l402RequireApproval: true,
model: '<string>',
modelProvider: '<string>',
toolAllowlist: ['<string>'],
toolDenylist: ['<string>']
},
profile: {
autopilotVoice: '<string>',
onboardingAnswers: {},
ownerDisplayName: '<string>',
personaSummary: '<string>',
preferences: {},
principles: ['<string>'],
schemaVersion: 123
},
status: 'active',
tagline: '<string>',
visibility: 'private'
})
};

fetch('https://openagents.com/api/autopilots/{autopilot}', 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://openagents.com/api/autopilots/{autopilot}",
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([
'avatar' => '<string>',
'displayName' => 'Autopilot',
'policy' => [
'dataPolicy' => [

],
'l402AllowedHosts' => [
'<string>'
],
'l402MaxSpendMsatsPerCall' => 123,
'l402MaxSpendMsatsPerDay' => 123,
'l402RequireApproval' => true,
'model' => '<string>',
'modelProvider' => '<string>',
'toolAllowlist' => [
'<string>'
],
'toolDenylist' => [
'<string>'
]
],
'profile' => [
'autopilotVoice' => '<string>',
'onboardingAnswers' => [

],
'ownerDisplayName' => '<string>',
'personaSummary' => '<string>',
'preferences' => [

],
'principles' => [
'<string>'
],
'schemaVersion' => 123
],
'status' => 'active',
'tagline' => '<string>',
'visibility' => 'private'
]),
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://openagents.com/api/autopilots/{autopilot}"

payload := strings.NewReader("{\n \"avatar\": \"<string>\",\n \"displayName\": \"Autopilot\",\n \"policy\": {\n \"dataPolicy\": {},\n \"l402AllowedHosts\": [\n \"<string>\"\n ],\n \"l402MaxSpendMsatsPerCall\": 123,\n \"l402MaxSpendMsatsPerDay\": 123,\n \"l402RequireApproval\": true,\n \"model\": \"<string>\",\n \"modelProvider\": \"<string>\",\n \"toolAllowlist\": [\n \"<string>\"\n ],\n \"toolDenylist\": [\n \"<string>\"\n ]\n },\n \"profile\": {\n \"autopilotVoice\": \"<string>\",\n \"onboardingAnswers\": {},\n \"ownerDisplayName\": \"<string>\",\n \"personaSummary\": \"<string>\",\n \"preferences\": {},\n \"principles\": [\n \"<string>\"\n ],\n \"schemaVersion\": 123\n },\n \"status\": \"active\",\n \"tagline\": \"<string>\",\n \"visibility\": \"private\"\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://openagents.com/api/autopilots/{autopilot}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"avatar\": \"<string>\",\n \"displayName\": \"Autopilot\",\n \"policy\": {\n \"dataPolicy\": {},\n \"l402AllowedHosts\": [\n \"<string>\"\n ],\n \"l402MaxSpendMsatsPerCall\": 123,\n \"l402MaxSpendMsatsPerDay\": 123,\n \"l402RequireApproval\": true,\n \"model\": \"<string>\",\n \"modelProvider\": \"<string>\",\n \"toolAllowlist\": [\n \"<string>\"\n ],\n \"toolDenylist\": [\n \"<string>\"\n ]\n },\n \"profile\": {\n \"autopilotVoice\": \"<string>\",\n \"onboardingAnswers\": {},\n \"ownerDisplayName\": \"<string>\",\n \"personaSummary\": \"<string>\",\n \"preferences\": {},\n \"principles\": [\n \"<string>\"\n ],\n \"schemaVersion\": 123\n },\n \"status\": \"active\",\n \"tagline\": \"<string>\",\n \"visibility\": \"private\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://openagents.com/api/autopilots/{autopilot}")

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 \"avatar\": \"<string>\",\n \"displayName\": \"Autopilot\",\n \"policy\": {\n \"dataPolicy\": {},\n \"l402AllowedHosts\": [\n \"<string>\"\n ],\n \"l402MaxSpendMsatsPerCall\": 123,\n \"l402MaxSpendMsatsPerDay\": 123,\n \"l402RequireApproval\": true,\n \"model\": \"<string>\",\n \"modelProvider\": \"<string>\",\n \"toolAllowlist\": [\n \"<string>\"\n ],\n \"toolDenylist\": [\n \"<string>\"\n ]\n },\n \"profile\": {\n \"autopilotVoice\": \"<string>\",\n \"onboardingAnswers\": {},\n \"ownerDisplayName\": \"<string>\",\n \"personaSummary\": \"<string>\",\n \"preferences\": {},\n \"principles\": [\n \"<string>\"\n ],\n \"schemaVersion\": 123\n },\n \"status\": \"active\",\n \"tagline\": \"<string>\",\n \"visibility\": \"private\"\n}"

response = http.request(request)
puts response.read_body
{
  "data": {
    "avatar": "<string>",
    "configVersion": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "displayName": "<string>",
    "handle": "<string>",
    "id": "<string>",
    "ownerUserId": 123,
    "status": "<string>",
    "tagline": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z",
    "visibility": "<string>"
  }
}
{
"message": "Unauthenticated."
}
{
"message": "Not found."
}
{
"errors": {},
"message": "The given data was invalid."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

autopilot
string
required

Body

application/json

Update autopilot fields and optional profile/policy blocks.

avatar
string | null
Maximum string length: 255
displayName
string | null
Maximum string length: 120
Example:

"Autopilot"

policy
object | null
profile
object | null
status
string | null
Example:

"active"

tagline
string | null
Maximum string length: 255
visibility
string | null
Example:

"private"

Response

Autopilot resource payload

data
object