Brands
Onboard a brand
Submit a new brand entity for verification.
POST
/
v1
/
brands
Onboard a brand
curl --request POST \
--url https://api.example.com/v1/brands \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"identifier_type": "<string>",
"identifier_value": "<string>",
"market": "<string>",
"contact": {},
"website": "<string>"
}
'import requests
url = "https://api.example.com/v1/brands"
payload = {
"name": "<string>",
"identifier_type": "<string>",
"identifier_value": "<string>",
"market": "<string>",
"contact": {},
"website": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
identifier_type: '<string>',
identifier_value: '<string>',
market: '<string>',
contact: {},
website: '<string>'
})
};
fetch('https://api.example.com/v1/brands', 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",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'identifier_type' => '<string>',
'identifier_value' => '<string>',
'market' => '<string>',
'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"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"identifier_type\": \"<string>\",\n \"identifier_value\": \"<string>\",\n \"market\": \"<string>\",\n \"contact\": {},\n \"website\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.example.com/v1/brands")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"identifier_type\": \"<string>\",\n \"identifier_value\": \"<string>\",\n \"market\": \"<string>\",\n \"contact\": {},\n \"website\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/brands")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"identifier_type\": \"<string>\",\n \"identifier_value\": \"<string>\",\n \"market\": \"<string>\",\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",
"identifier_type": "ABN",
"identifier_value": "12345678901",
"market": "AU",
"status": "verified",
"created_at": "2026-07-17T14:30:00+10:00"
},
"meta": {
"request_id": "req_mno345",
"timestamp": "2026-07-17T14:30:00+10:00"
}
}
Required permission:
brands:write
Request body
string
required
Legal entity name as registered (e.g.
"TrackFast Logistics Pty Ltd").string
required
One of:
ABN, ACN, NZBN, UEN, or other market-specific identifier.string
required
The registration number (e.g.
"54655807695").string
required
Primary market for this entity. ISO 3166-1 alpha-2.
object
required
Authorised representative. Must include
name, email, and phone.string
Entity website. Used for domain-match SID validation.
Example
curl -X POST https://api.senderz.ai/v1/brands \
-H "Authorization: Bearer sz_live_xxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"name": "TrackFast Logistics Pty Ltd",
"identifier_type": "ABN",
"identifier_value": "12345678901",
"market": "AU",
"contact": {
"name": "Sarah Chen",
"email": "sarah@trackfast.com.au",
"phone": "+61400123456"
},
"website": "https://trackfast.com.au"
}'
Response
{
"ok": true,
"data": {
"id": "brand_f6g7h8i9",
"name": "TrackFast Logistics Pty Ltd",
"identifier_type": "ABN",
"identifier_value": "12345678901",
"market": "AU",
"status": "verified",
"created_at": "2026-07-17T14:30:00+10:00"
},
"meta": {
"request_id": "req_mno345",
"timestamp": "2026-07-17T14:30:00+10:00"
}
}
⌘I
Onboard a brand
curl --request POST \
--url https://api.example.com/v1/brands \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"identifier_type": "<string>",
"identifier_value": "<string>",
"market": "<string>",
"contact": {},
"website": "<string>"
}
'import requests
url = "https://api.example.com/v1/brands"
payload = {
"name": "<string>",
"identifier_type": "<string>",
"identifier_value": "<string>",
"market": "<string>",
"contact": {},
"website": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
identifier_type: '<string>',
identifier_value: '<string>',
market: '<string>',
contact: {},
website: '<string>'
})
};
fetch('https://api.example.com/v1/brands', 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",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'identifier_type' => '<string>',
'identifier_value' => '<string>',
'market' => '<string>',
'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"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"identifier_type\": \"<string>\",\n \"identifier_value\": \"<string>\",\n \"market\": \"<string>\",\n \"contact\": {},\n \"website\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.example.com/v1/brands")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"identifier_type\": \"<string>\",\n \"identifier_value\": \"<string>\",\n \"market\": \"<string>\",\n \"contact\": {},\n \"website\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/brands")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"identifier_type\": \"<string>\",\n \"identifier_value\": \"<string>\",\n \"market\": \"<string>\",\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",
"identifier_type": "ABN",
"identifier_value": "12345678901",
"market": "AU",
"status": "verified",
"created_at": "2026-07-17T14:30:00+10:00"
},
"meta": {
"request_id": "req_mno345",
"timestamp": "2026-07-17T14:30:00+10:00"
}
}
.jpg?fit=max&auto=format&n=IhWYk8R5R6sdJ_7C&q=85&s=7e3194d82fa9653ad2a2449b4f1a3073)