Registrations
Get registration
Retrieve full details of a specific Sender ID registration including brand verification, LOA status, and decision history.
GET
/
v1
/
operator-registrations
/
{registration_id}
Get registration
curl --request GET \
--url https://api.example.com/v1/operator-registrations/{registration_id}import requests
url = "https://api.example.com/v1/operator-registrations/{registration_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/operator-registrations/{registration_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/operator-registrations/{registration_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/operator-registrations/{registration_id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/operator-registrations/{registration_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/operator-registrations/{registration_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"ok": true,
"data": {
"id": "opreg_a1b2c3d4",
"sender_id": "TrackFast",
"brand": {
"id": "brand_f6g7h8i9",
"name": "TrackFast Logistics Pty Ltd",
"identifier_type": "ABN",
"identifier_value": "12345678901",
"website": "https://trackfast.com.au",
"verification_status": "verified"
},
"market": "AU",
"status": "pending_operator_review",
"use_case": "Dispatch and delivery notifications for e-commerce orders.",
"match_type": "business_name",
"match_value": "TrackFast Logistics Pty Ltd",
"submitted_by": {
"type": "aggregator",
"name": "Example CPaaS Provider",
"id": "org_x1y2z3"
},
"loa": {
"status": "received",
"received_at": "2026-07-16T09:00:00+10:00"
},
"verification": {
"abr_match": true,
"name_match_score": 0.97,
"domain_match": true
},
"history": [
{
"action": "submitted",
"at": "2026-07-17T14:30:00+10:00",
"by": "org_x1y2z3"
}
],
"submitted_at": "2026-07-17T14:30:00+10:00",
"created_at": "2026-07-17T14:30:00+10:00"
},
"meta": {
"request_id": "req_op002",
"timestamp": "2026-07-17T15:01:00+10:00"
}
}
Required permission:
operator:read
Returns the complete registration record including brand details, use case, verification results, LOA status, and any prior decisions.
Path parameters
string
required
The operator registration ID (e.g.
opreg_a1b2c3d4).Example
curl https://api.senderz.ai/v1/operator-registrations/opreg_a1b2c3d4 \
-H "Authorization: Bearer sz_live_xxxxxxxxxxxxx"
Response
{
"ok": true,
"data": {
"id": "opreg_a1b2c3d4",
"sender_id": "TrackFast",
"brand": {
"id": "brand_f6g7h8i9",
"name": "TrackFast Logistics Pty Ltd",
"identifier_type": "ABN",
"identifier_value": "12345678901",
"website": "https://trackfast.com.au",
"verification_status": "verified"
},
"market": "AU",
"status": "pending_operator_review",
"use_case": "Dispatch and delivery notifications for e-commerce orders.",
"match_type": "business_name",
"match_value": "TrackFast Logistics Pty Ltd",
"submitted_by": {
"type": "aggregator",
"name": "Example CPaaS Provider",
"id": "org_x1y2z3"
},
"loa": {
"status": "received",
"received_at": "2026-07-16T09:00:00+10:00"
},
"verification": {
"abr_match": true,
"name_match_score": 0.97,
"domain_match": true
},
"history": [
{
"action": "submitted",
"at": "2026-07-17T14:30:00+10:00",
"by": "org_x1y2z3"
}
],
"submitted_at": "2026-07-17T14:30:00+10:00",
"created_at": "2026-07-17T14:30:00+10:00"
},
"meta": {
"request_id": "req_op002",
"timestamp": "2026-07-17T15:01:00+10:00"
}
}
⌘I
Get registration
curl --request GET \
--url https://api.example.com/v1/operator-registrations/{registration_id}import requests
url = "https://api.example.com/v1/operator-registrations/{registration_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/operator-registrations/{registration_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/operator-registrations/{registration_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/operator-registrations/{registration_id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/operator-registrations/{registration_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/operator-registrations/{registration_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"ok": true,
"data": {
"id": "opreg_a1b2c3d4",
"sender_id": "TrackFast",
"brand": {
"id": "brand_f6g7h8i9",
"name": "TrackFast Logistics Pty Ltd",
"identifier_type": "ABN",
"identifier_value": "12345678901",
"website": "https://trackfast.com.au",
"verification_status": "verified"
},
"market": "AU",
"status": "pending_operator_review",
"use_case": "Dispatch and delivery notifications for e-commerce orders.",
"match_type": "business_name",
"match_value": "TrackFast Logistics Pty Ltd",
"submitted_by": {
"type": "aggregator",
"name": "Example CPaaS Provider",
"id": "org_x1y2z3"
},
"loa": {
"status": "received",
"received_at": "2026-07-16T09:00:00+10:00"
},
"verification": {
"abr_match": true,
"name_match_score": 0.97,
"domain_match": true
},
"history": [
{
"action": "submitted",
"at": "2026-07-17T14:30:00+10:00",
"by": "org_x1y2z3"
}
],
"submitted_at": "2026-07-17T14:30:00+10:00",
"created_at": "2026-07-17T14:30:00+10:00"
},
"meta": {
"request_id": "req_op002",
"timestamp": "2026-07-17T15:01:00+10:00"
}
}
.jpg?fit=max&auto=format&n=IhWYk8R5R6sdJ_7C&q=85&s=7e3194d82fa9653ad2a2449b4f1a3073)