List alphanumeric sender-ID registrations
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/compliance/sender-id-registrations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/sender-id-registrations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbit.devotel.io/api/v1/compliance/sender-id-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.orbit.devotel.io/api/v1/compliance/sender-id-registrations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.orbit.devotel.io/api/v1/compliance/sender-id-registrations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.orbit.devotel.io/api/v1/compliance/sender-id-registrations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/sender-id-registrations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"entries": [
{
"id": "sidreg_1a2b3c4d5e6f",
"sender_id": "ACME",
"created_at": "2026-08-01T09:30:00.000Z",
"updated_at": "2026-08-01T09:30:00.000Z",
"countries": [
{
"country": "GB",
"status": "approved",
"document_refs": [
"doc_1a2b3c4d5e6f"
],
"registered_at": "2026-08-02T10:00:00.000Z",
"expires_at": null,
"registration_provider_id": null,
"notes": null,
"submitted_at": "2026-08-01T09:30:00.000Z",
"upstream_status": null,
"upstream_registration_id": null
}
]
}
],
"total": 1,
"nextCursor": null
},
"meta": {
"request_id": "req_1a2b3c4d5e6f",
"timestamp": "2026-08-07T12:00:00.000Z"
}
}Compliance
List alphanumeric sender-ID registrations
Returns the calling tenant’s alphanumeric sender-ID registrations, one bounded page at a time, with each destination country’s approval status, document references, and registry timestamps. Use it to render the sender-ID status table in the dashboard. Keyset-paginated: pass the previous page’s nextCursor back as cursor to page through results.
GET
/
api
/
v1
/
compliance
/
sender-id-registrations
List alphanumeric sender-ID registrations
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/compliance/sender-id-registrations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/sender-id-registrations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbit.devotel.io/api/v1/compliance/sender-id-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.orbit.devotel.io/api/v1/compliance/sender-id-registrations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.orbit.devotel.io/api/v1/compliance/sender-id-registrations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.orbit.devotel.io/api/v1/compliance/sender-id-registrations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/sender-id-registrations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"entries": [
{
"id": "sidreg_1a2b3c4d5e6f",
"sender_id": "ACME",
"created_at": "2026-08-01T09:30:00.000Z",
"updated_at": "2026-08-01T09:30:00.000Z",
"countries": [
{
"country": "GB",
"status": "approved",
"document_refs": [
"doc_1a2b3c4d5e6f"
],
"registered_at": "2026-08-02T10:00:00.000Z",
"expires_at": null,
"registration_provider_id": null,
"notes": null,
"submitted_at": "2026-08-01T09:30:00.000Z",
"upstream_status": null,
"upstream_registration_id": null
}
]
}
],
"total": 1,
"nextCursor": null
},
"meta": {
"request_id": "req_1a2b3c4d5e6f",
"timestamp": "2026-08-07T12:00:00.000Z"
}
}Authorizations
BearerApiKey
Dashboard JWT token from Clerk
Query Parameters
Maximum rows to return (1–200, default 50).
Required range:
1 <= x <= 200Opaque keyset cursor from a prior page's nextCursor.
⌘I