curl --request PATCH \
--url https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"phone_number": "+12345678901",
"name": "<string>",
"sip": {
"gateway": "<string>",
"port": 123,
"username": "<string>",
"password": "<string>",
"secondary_gateway": "<string>"
},
"additional_settings": {}
}
'import requests
url = "https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks"
payload = {
"phone_number": "+12345678901",
"name": "<string>",
"sip": {
"gateway": "<string>",
"port": 123,
"username": "<string>",
"password": "<string>",
"secondary_gateway": "<string>"
},
"additional_settings": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
phone_number: '+12345678901',
name: '<string>',
sip: {
gateway: '<string>',
port: 123,
username: '<string>',
password: '<string>',
secondary_gateway: '<string>'
},
additional_settings: {}
})
};
fetch('https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks', 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://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'phone_number' => '+12345678901',
'name' => '<string>',
'sip' => [
'gateway' => '<string>',
'port' => 123,
'username' => '<string>',
'password' => '<string>',
'secondary_gateway' => '<string>'
],
'additional_settings' => [
]
]),
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://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks"
payload := strings.NewReader("{\n \"phone_number\": \"+12345678901\",\n \"name\": \"<string>\",\n \"sip\": {\n \"gateway\": \"<string>\",\n \"port\": 123,\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"secondary_gateway\": \"<string>\"\n },\n \"additional_settings\": {}\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"phone_number\": \"+12345678901\",\n \"name\": \"<string>\",\n \"sip\": {\n \"gateway\": \"<string>\",\n \"port\": 123,\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"secondary_gateway\": \"<string>\"\n },\n \"additional_settings\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"phone_number\": \"+12345678901\",\n \"name\": \"<string>\",\n \"sip\": {\n \"gateway\": \"<string>\",\n \"port\": 123,\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"secondary_gateway\": \"<string>\"\n },\n \"additional_settings\": {}\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "<string>",
"data": {
"phone_number_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"number": "<string>",
"is_external": true,
"source": "purchased",
"channels": {
"call": {
"capable": true,
"enabled": true,
"channel_limit": 123,
"whitelisted_destinations": [
"US"
],
"bound": true,
"agent_uuid": "<string>",
"agent_name": "<string>"
},
"sms": {
"capable": true,
"enabled": true,
"channel_limit": 123,
"whitelisted_destinations": [
"<string>"
],
"bound": true,
"agent_uuid": "<string>",
"agent_name": "<string>"
},
"whatsapp": {
"bound": true,
"agent_uuid": "<string>",
"agent_name": "<string>"
},
"inbound": {
"enabled": true,
"channel_limit": 123
}
}
}
}Update an external trunk
Updates an existing external trunk (registered via POST /trunks). Identify the trunk by phone_number + channel. Any field omitted is left untouched. SIP fields set to empty string clear that credential.
curl --request PATCH \
--url https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"phone_number": "+12345678901",
"name": "<string>",
"sip": {
"gateway": "<string>",
"port": 123,
"username": "<string>",
"password": "<string>",
"secondary_gateway": "<string>"
},
"additional_settings": {}
}
'import requests
url = "https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks"
payload = {
"phone_number": "+12345678901",
"name": "<string>",
"sip": {
"gateway": "<string>",
"port": 123,
"username": "<string>",
"password": "<string>",
"secondary_gateway": "<string>"
},
"additional_settings": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
phone_number: '+12345678901',
name: '<string>',
sip: {
gateway: '<string>',
port: 123,
username: '<string>',
password: '<string>',
secondary_gateway: '<string>'
},
additional_settings: {}
})
};
fetch('https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks', 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://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'phone_number' => '+12345678901',
'name' => '<string>',
'sip' => [
'gateway' => '<string>',
'port' => 123,
'username' => '<string>',
'password' => '<string>',
'secondary_gateway' => '<string>'
],
'additional_settings' => [
]
]),
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://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks"
payload := strings.NewReader("{\n \"phone_number\": \"+12345678901\",\n \"name\": \"<string>\",\n \"sip\": {\n \"gateway\": \"<string>\",\n \"port\": 123,\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"secondary_gateway\": \"<string>\"\n },\n \"additional_settings\": {}\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"phone_number\": \"+12345678901\",\n \"name\": \"<string>\",\n \"sip\": {\n \"gateway\": \"<string>\",\n \"port\": 123,\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"secondary_gateway\": \"<string>\"\n },\n \"additional_settings\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{subdomain}.mihu.ai/api/v1/phone-numbers/trunks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"phone_number\": \"+12345678901\",\n \"name\": \"<string>\",\n \"sip\": {\n \"gateway\": \"<string>\",\n \"port\": 123,\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"secondary_gateway\": \"<string>\"\n },\n \"additional_settings\": {}\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "<string>",
"data": {
"phone_number_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"number": "<string>",
"is_external": true,
"source": "purchased",
"channels": {
"call": {
"capable": true,
"enabled": true,
"channel_limit": 123,
"whitelisted_destinations": [
"US"
],
"bound": true,
"agent_uuid": "<string>",
"agent_name": "<string>"
},
"sms": {
"capable": true,
"enabled": true,
"channel_limit": 123,
"whitelisted_destinations": [
"<string>"
],
"bound": true,
"agent_uuid": "<string>",
"agent_name": "<string>"
},
"whatsapp": {
"bound": true,
"agent_uuid": "<string>",
"agent_name": "<string>"
},
"inbound": {
"enabled": true,
"channel_limit": 123
}
}
}
}Authorizations
Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"
Body
Identifier for the trunk being updated. Together with channel, locates exactly one trunk row. Not editable — the value here must match the existing trunk.
"+12345678901"
Identifier for the trunk being updated. Not editable — to move a number to a different channel, delete and recreate.
call, whatsapp Friendly label for the trunk. Surfaces in dashboards. Pass to rename; omit to keep the existing label.
Call-channel only. Whether this trunk handles inbound, outbound, or both. Ignored on WhatsApp.
inbound, outbound, both SIP credentials. Only the keys you provide are touched — other credentials remain unchanged. Pass an empty string for any field to clear it.
Show child attributes
Show child attributes
Free-form JSON stored on the binding. Replaces the existing object when provided; pass an empty object to clear.
Response
Updated
Indicates whether the request completed successfully. True for successful responses; false for documented error responses.
Human-readable response message. Safe to display in logs or simple client notifications; use structured fields for program logic.
Per-channel snapshot returned by /phone-numbers/{uuid}/channels, /phone-numbers/channels?number=…, and the trunk create/update/assign endpoints. Combines capability (what the carrier supports), state (what's enabled), and binding (which agent is wired up).
Show child attributes
Show child attributes
