Edit or enable/disable a prompt
curl --request PATCH \
--url https://agentled.co/api/v1/brands/{id}/prompts/{promptId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "<string>",
"active": true
}
'import requests
url = "https://agentled.co/api/v1/brands/{id}/prompts/{promptId}"
payload = {
"text": "<string>",
"active": True
}
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({text: '<string>', active: true})
};
fetch('https://agentled.co/api/v1/brands/{id}/prompts/{promptId}', 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://agentled.co/api/v1/brands/{id}/prompts/{promptId}",
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([
'text' => '<string>',
'active' => 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://agentled.co/api/v1/brands/{id}/prompts/{promptId}"
payload := strings.NewReader("{\n \"text\": \"<string>\",\n \"active\": true\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://agentled.co/api/v1/brands/{id}/prompts/{promptId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"text\": \"<string>\",\n \"active\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agentled.co/api/v1/brands/{id}/prompts/{promptId}")
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 \"text\": \"<string>\",\n \"active\": true\n}"
response = http.request(request)
puts response.read_body{
"prompt": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"brandId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"text": "<string>",
"active": true,
"sortOrder": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}Prompts
Edit or enable/disable a prompt
Change a prompt’s text, its active state, or both. Send at least one. Prompts are never hard-deleted: active:false disables (keeps scan history), active:true re-enables (and counts against your prompt limit again).
PATCH
/
brands
/
{id}
/
prompts
/
{promptId}
Edit or enable/disable a prompt
curl --request PATCH \
--url https://agentled.co/api/v1/brands/{id}/prompts/{promptId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "<string>",
"active": true
}
'import requests
url = "https://agentled.co/api/v1/brands/{id}/prompts/{promptId}"
payload = {
"text": "<string>",
"active": True
}
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({text: '<string>', active: true})
};
fetch('https://agentled.co/api/v1/brands/{id}/prompts/{promptId}', 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://agentled.co/api/v1/brands/{id}/prompts/{promptId}",
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([
'text' => '<string>',
'active' => 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://agentled.co/api/v1/brands/{id}/prompts/{promptId}"
payload := strings.NewReader("{\n \"text\": \"<string>\",\n \"active\": true\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://agentled.co/api/v1/brands/{id}/prompts/{promptId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"text\": \"<string>\",\n \"active\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agentled.co/api/v1/brands/{id}/prompts/{promptId}")
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 \"text\": \"<string>\",\n \"active\": true\n}"
response = http.request(request)
puts response.read_body{
"prompt": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"brandId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"text": "<string>",
"active": true,
"sortOrder": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"upgradeUrl": "<string>"
}
}Authorizations
An API key from the Account tab, sent as Authorization: Bearer agl_live_.... Keys are secret; store them server-side.
Path Parameters
Brand id (UUID). A value that is not a UUID returns 404.
Prompt id (UUID). A value that is not a UUID returns 404.
Body
application/json
Provide text, active, or both.
Maximum string length:
300false disables (soft-delete); true re-enables.
Response
The updated prompt.
Show child attributes
Show child attributes