Create an MCCMNC rate override
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/billing/mccmnc-overrides/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"organization_id": "org_01HZY8ORG",
"mcc": "310",
"mnc": "260",
"rate_per_unit": 0.045,
"currency": "USD"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/billing/mccmnc-overrides/"
payload = {
"organization_id": "org_01HZY8ORG",
"mcc": "310",
"mnc": "260",
"rate_per_unit": 0.045,
"currency": "USD"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
organization_id: 'org_01HZY8ORG',
mcc: '310',
mnc: '260',
rate_per_unit: 0.045,
currency: 'USD'
})
};
fetch('https://api.orbit.devotel.io/api/v1/billing/mccmnc-overrides/', 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/billing/mccmnc-overrides/",
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([
'organization_id' => 'org_01HZY8ORG',
'mcc' => '310',
'mnc' => '260',
'rate_per_unit' => 0.045,
'currency' => 'USD'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.orbit.devotel.io/api/v1/billing/mccmnc-overrides/"
payload := strings.NewReader("{\n \"organization_id\": \"org_01HZY8ORG\",\n \"mcc\": \"310\",\n \"mnc\": \"260\",\n \"rate_per_unit\": 0.045,\n \"currency\": \"USD\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.orbit.devotel.io/api/v1/billing/mccmnc-overrides/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"organization_id\": \"org_01HZY8ORG\",\n \"mcc\": \"310\",\n \"mnc\": \"260\",\n \"rate_per_unit\": 0.045,\n \"currency\": \"USD\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/billing/mccmnc-overrides/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"organization_id\": \"org_01HZY8ORG\",\n \"mcc\": \"310\",\n \"mnc\": \"260\",\n \"rate_per_unit\": 0.045,\n \"currency\": \"USD\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "operator_01HZY8OVR",
"organization_id": "org_01HZY8ORG",
"organization_name": "Acme Corp",
"mccmnc": "310260",
"mcc": "310",
"mnc": "260",
"operator_name": "T-Mobile USA",
"country": "United States",
"rate_per_unit": 0.045,
"rate_cents": 4.5,
"currency": "USD",
"created_at": "2026-08-02T12:00:00.000Z",
"updated_at": "2026-08-02T12:00:00.000Z"
},
"meta": {
"request_id": "req_01HZY8EXAMPLE",
"timestamp": "2026-08-02T12:00:00.000Z"
}
}Billing
Create an MCCMNC rate override
Creates a fixed SMS rate override for an (organization, MCCMNC) network pair. Supply the target organization_id, the 3-digit mcc, the 2-3 digit mnc, and the rate_per_unit in the given currency. The operator must exist in the directory and no override may already exist for the pair. Regular admins can only write for their own organization; super-admins may target any. Returns 201 with the created override.
POST
/
api
/
v1
/
billing
/
mccmnc-overrides
/
Create an MCCMNC rate override
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/billing/mccmnc-overrides/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"organization_id": "org_01HZY8ORG",
"mcc": "310",
"mnc": "260",
"rate_per_unit": 0.045,
"currency": "USD"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/billing/mccmnc-overrides/"
payload = {
"organization_id": "org_01HZY8ORG",
"mcc": "310",
"mnc": "260",
"rate_per_unit": 0.045,
"currency": "USD"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
organization_id: 'org_01HZY8ORG',
mcc: '310',
mnc: '260',
rate_per_unit: 0.045,
currency: 'USD'
})
};
fetch('https://api.orbit.devotel.io/api/v1/billing/mccmnc-overrides/', 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/billing/mccmnc-overrides/",
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([
'organization_id' => 'org_01HZY8ORG',
'mcc' => '310',
'mnc' => '260',
'rate_per_unit' => 0.045,
'currency' => 'USD'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.orbit.devotel.io/api/v1/billing/mccmnc-overrides/"
payload := strings.NewReader("{\n \"organization_id\": \"org_01HZY8ORG\",\n \"mcc\": \"310\",\n \"mnc\": \"260\",\n \"rate_per_unit\": 0.045,\n \"currency\": \"USD\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.orbit.devotel.io/api/v1/billing/mccmnc-overrides/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"organization_id\": \"org_01HZY8ORG\",\n \"mcc\": \"310\",\n \"mnc\": \"260\",\n \"rate_per_unit\": 0.045,\n \"currency\": \"USD\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/billing/mccmnc-overrides/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"organization_id\": \"org_01HZY8ORG\",\n \"mcc\": \"310\",\n \"mnc\": \"260\",\n \"rate_per_unit\": 0.045,\n \"currency\": \"USD\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "operator_01HZY8OVR",
"organization_id": "org_01HZY8ORG",
"organization_name": "Acme Corp",
"mccmnc": "310260",
"mcc": "310",
"mnc": "260",
"operator_name": "T-Mobile USA",
"country": "United States",
"rate_per_unit": 0.045,
"rate_cents": 4.5,
"currency": "USD",
"created_at": "2026-08-02T12:00:00.000Z",
"updated_at": "2026-08-02T12:00:00.000Z"
},
"meta": {
"request_id": "req_01HZY8EXAMPLE",
"timestamp": "2026-08-02T12:00:00.000Z"
}
}Authorizations
BearerApiKey
Dashboard JWT token from Clerk
Body
application/json
Organization the override applies to.
3-digit Mobile Country Code.
Pattern:
^\d{3}$2- or 3-digit Mobile Network Code.
Pattern:
^\d{2,3}$Fixed customer-facing rate per SMS in the given currency.
Required range:
x >= 0Pattern:
^[A-Z]{3}$Maximum string length:
500⌘I