Brands
Update brand contact
Update a brand’s contact details or website. Entity name and identifier are immutable after verification.
PATCH
/
v1
/
brands
/
{brand_id}
Update brand contact
curl --request PATCH \
--url https://api.example.com/v1/brands/{brand_id} \
--header 'Content-Type: application/json' \
--data '
{
"contact": {},
"website": "<string>"
}
'import requests
url = "https://api.example.com/v1/brands/{brand_id}"
payload = {
"contact": {},
"website": "<string>"
}
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({contact: {}, website: '<string>'})
};
fetch('https://api.example.com/v1/brands/{brand_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://api.example.com/v1/brands/{brand_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([
'contact' => [
],
'website' => '<string>'
]),
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/v1/brands/{brand_id}"
payload := strings.NewReader("{\n \"contact\": {},\n \"website\": \"<string>\"\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/v1/brands/{brand_id}")
.header("Content-Type", "application/json")
.body("{\n \"contact\": {},\n \"website\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/brands/{brand_id}")
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 \"contact\": {},\n \"website\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"ok": true,
"data": {
"id": "brand_f6g7h8i9",
"name": "TrackFast Logistics Pty Ltd",
"status": "verified",
"contact": {
"name": "James Park",
"email": "james@trackfast.com.au",
"phone": "+61400654321"
},
"updated_at": "2026-07-18T10:00:00+10:00"
},
"meta": {
"request_id": "req_vwx234",
"timestamp": "2026-07-18T10:00:00+10:00"
}
}
Required permission:
brands:write
Only contact and website fields are mutable after verification. Changes to name, identifier_type, or identifier_value require a new brand submission.
Path parameters
string
required
The brand ID (e.g.
brand_f6g7h8i9).Request body
object
Updated contact details. Include
name, email, and/or phone.string
Updated entity website.
Example
curl -X PATCH https://api.senderz.ai/v1/brands/brand_f6g7h8i9 \
-H "Authorization: Bearer sz_live_xxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"contact": {
"name": "James Park",
"email": "james@trackfast.com.au",
"phone": "+61400654321"
}
}'
Response
{
"ok": true,
"data": {
"id": "brand_f6g7h8i9",
"name": "TrackFast Logistics Pty Ltd",
"status": "verified",
"contact": {
"name": "James Park",
"email": "james@trackfast.com.au",
"phone": "+61400654321"
},
"updated_at": "2026-07-18T10:00:00+10:00"
},
"meta": {
"request_id": "req_vwx234",
"timestamp": "2026-07-18T10:00:00+10:00"
}
}
⌘I
Update brand contact
curl --request PATCH \
--url https://api.example.com/v1/brands/{brand_id} \
--header 'Content-Type: application/json' \
--data '
{
"contact": {},
"website": "<string>"
}
'import requests
url = "https://api.example.com/v1/brands/{brand_id}"
payload = {
"contact": {},
"website": "<string>"
}
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({contact: {}, website: '<string>'})
};
fetch('https://api.example.com/v1/brands/{brand_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://api.example.com/v1/brands/{brand_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([
'contact' => [
],
'website' => '<string>'
]),
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/v1/brands/{brand_id}"
payload := strings.NewReader("{\n \"contact\": {},\n \"website\": \"<string>\"\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/v1/brands/{brand_id}")
.header("Content-Type", "application/json")
.body("{\n \"contact\": {},\n \"website\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/brands/{brand_id}")
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 \"contact\": {},\n \"website\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"ok": true,
"data": {
"id": "brand_f6g7h8i9",
"name": "TrackFast Logistics Pty Ltd",
"status": "verified",
"contact": {
"name": "James Park",
"email": "james@trackfast.com.au",
"phone": "+61400654321"
},
"updated_at": "2026-07-18T10:00:00+10:00"
},
"meta": {
"request_id": "req_vwx234",
"timestamp": "2026-07-18T10:00:00+10:00"
}
}
.jpg?fit=max&auto=format&n=IhWYk8R5R6sdJ_7C&q=85&s=7e3194d82fa9653ad2a2449b4f1a3073)