Set a brand's location
curl --request PATCH \
--url https://agentled.co/api/v1/brands/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"location": {
"country": "US",
"city": "Austin"
}
}
'import requests
url = "https://agentled.co/api/v1/brands/{id}"
payload = { "location": {
"country": "US",
"city": "Austin"
} }
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({location: {country: 'US', city: 'Austin'}})
};
fetch('https://agentled.co/api/v1/brands/{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://agentled.co/api/v1/brands/{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([
'location' => [
'country' => 'US',
'city' => 'Austin'
]
]),
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}"
payload := strings.NewReader("{\n \"location\": {\n \"country\": \"US\",\n \"city\": \"Austin\"\n }\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}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"location\": {\n \"country\": \"US\",\n \"city\": \"Austin\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agentled.co/api/v1/brands/{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 \"location\": {\n \"country\": \"US\",\n \"city\": \"Austin\"\n }\n}"
response = http.request(request)
puts response.read_body{
"brand": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"domain": "<string>",
"name": "<string>",
"description": "<string>",
"logoUrl": "<string>",
"status": "anonymous",
"isActive": true,
"firstScanCompletedAt": "2023-11-07T05:31:56Z",
"lastScanAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"claimedAt": "2023-11-07T05:31:56Z",
"location": {
"mode": "worldwide",
"country": "<string>",
"city": "<string>",
"label": "<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>"
}
}Brands
Set a brand's location
Update the brand’s measurement location — the market the AI answers are measured from. Send mode: "worldwide" to clear any country/city scope. Use the Geo endpoints to discover valid country and city values.
PATCH
/
brands
/
{id}
Set a brand's location
curl --request PATCH \
--url https://agentled.co/api/v1/brands/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"location": {
"country": "US",
"city": "Austin"
}
}
'import requests
url = "https://agentled.co/api/v1/brands/{id}"
payload = { "location": {
"country": "US",
"city": "Austin"
} }
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({location: {country: 'US', city: 'Austin'}})
};
fetch('https://agentled.co/api/v1/brands/{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://agentled.co/api/v1/brands/{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([
'location' => [
'country' => 'US',
'city' => 'Austin'
]
]),
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}"
payload := strings.NewReader("{\n \"location\": {\n \"country\": \"US\",\n \"city\": \"Austin\"\n }\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}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"location\": {\n \"country\": \"US\",\n \"city\": \"Austin\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agentled.co/api/v1/brands/{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 \"location\": {\n \"country\": \"US\",\n \"city\": \"Austin\"\n }\n}"
response = http.request(request)
puts response.read_body{
"brand": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"domain": "<string>",
"name": "<string>",
"description": "<string>",
"logoUrl": "<string>",
"status": "anonymous",
"isActive": true,
"firstScanCompletedAt": "2023-11-07T05:31:56Z",
"lastScanAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"claimedAt": "2023-11-07T05:31:56Z",
"location": {
"mode": "worldwide",
"country": "<string>",
"city": "<string>",
"label": "<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.
Body
application/json
Show child attributes
Show child attributes
Response
The updated brand.
Show child attributes
Show child attributes