Registrations
List registrations
List Sender ID registrations submitted for your network.
GET
/
v1
/
operator-registrations
List registrations
curl --request GET \
--url https://api.example.com/v1/operator-registrationsimport requests
url = "https://api.example.com/v1/operator-registrations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/operator-registrations', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/operator-registrations")
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"
},
"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"
},
"submitted_at": "2026-07-17T14:30:00+10:00"
},
{
"id": "opreg_e5f6g7h8",
"sender_id": "SecurBank",
"brand": {
"id": "brand_j1k2l3m4",
"name": "SecurBank Australia Ltd",
"identifier_type": "ABN",
"identifier_value": "98765432100"
},
"market": "AU",
"status": "pending_operator_review",
"use_case": "Two-factor authentication and transaction verification codes.",
"match_type": "company_name",
"match_value": "SecurBank Australia Ltd",
"submitted_by": {
"type": "brand",
"name": "SecurBank Australia Ltd"
},
"submitted_at": "2026-07-17T10:15:00+10:00"
}
],
"pagination": {
"has_more": false,
"next_cursor": null,
"page_size": 50
},
"meta": {
"request_id": "req_op001",
"timestamp": "2026-07-17T15:00:00+10:00"
}
}
Required permission:
operator:read
Returns registrations filtered to the operator’s network. Results are sorted by submission date (newest first).
Query parameters
string
Filter by status:
pending_operator_review, approved, info_requested, resubmitted, rejected.string
Filter by ISO 3166-1 alpha-2 country code.
string
Filter by Sender ID string (partial match).
string
Filter by brand entity name (partial match).
string
Filter by submitter type:
brand, aggregator, cpaas.string
ISO 8601 date. Only return registrations submitted after this date.
string
ISO 8601 date. Only return registrations submitted before this date.
string
Pagination cursor.
integer
default:"50"
Results per page. Maximum 100.
Example
curl "https://api.senderz.ai/v1/operator-registrations?status=pending_operator_review&market=AU" \
-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"
},
"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"
},
"submitted_at": "2026-07-17T14:30:00+10:00"
},
{
"id": "opreg_e5f6g7h8",
"sender_id": "SecurBank",
"brand": {
"id": "brand_j1k2l3m4",
"name": "SecurBank Australia Ltd",
"identifier_type": "ABN",
"identifier_value": "98765432100"
},
"market": "AU",
"status": "pending_operator_review",
"use_case": "Two-factor authentication and transaction verification codes.",
"match_type": "company_name",
"match_value": "SecurBank Australia Ltd",
"submitted_by": {
"type": "brand",
"name": "SecurBank Australia Ltd"
},
"submitted_at": "2026-07-17T10:15:00+10:00"
}
],
"pagination": {
"has_more": false,
"next_cursor": null,
"page_size": 50
},
"meta": {
"request_id": "req_op001",
"timestamp": "2026-07-17T15:00:00+10:00"
}
}
⌘I
List registrations
curl --request GET \
--url https://api.example.com/v1/operator-registrationsimport requests
url = "https://api.example.com/v1/operator-registrations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/operator-registrations', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/operator-registrations")
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"
},
"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"
},
"submitted_at": "2026-07-17T14:30:00+10:00"
},
{
"id": "opreg_e5f6g7h8",
"sender_id": "SecurBank",
"brand": {
"id": "brand_j1k2l3m4",
"name": "SecurBank Australia Ltd",
"identifier_type": "ABN",
"identifier_value": "98765432100"
},
"market": "AU",
"status": "pending_operator_review",
"use_case": "Two-factor authentication and transaction verification codes.",
"match_type": "company_name",
"match_value": "SecurBank Australia Ltd",
"submitted_by": {
"type": "brand",
"name": "SecurBank Australia Ltd"
},
"submitted_at": "2026-07-17T10:15:00+10:00"
}
],
"pagination": {
"has_more": false,
"next_cursor": null,
"page_size": 50
},
"meta": {
"request_id": "req_op001",
"timestamp": "2026-07-17T15:00:00+10:00"
}
}
.jpg?fit=max&auto=format&n=IhWYk8R5R6sdJ_7C&q=85&s=7e3194d82fa9653ad2a2449b4f1a3073)