Update phone number
curl --request PATCH \
--url https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"number": "<string>",
"name": "<string>",
"inbound_agent_id": "<string>",
"sip_trunk_id": "<string>"
}
'import requests
url = "https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}"
payload = {
"number": "<string>",
"name": "<string>",
"inbound_agent_id": "<string>",
"sip_trunk_id": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
number: '<string>',
name: '<string>',
inbound_agent_id: '<string>',
sip_trunk_id: '<string>'
})
};
fetch('https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}"
payload := strings.NewReader("{\n \"number\": \"<string>\",\n \"name\": \"<string>\",\n \"inbound_agent_id\": \"<string>\",\n \"sip_trunk_id\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
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://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"number\": \"<string>\",\n \"name\": \"<string>\",\n \"inbound_agent_id\": \"<string>\",\n \"sip_trunk_id\": \"<string>\"\n}")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}",
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([
'number' => '<string>',
'name' => '<string>',
'inbound_agent_id' => '<string>',
'sip_trunk_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"number\": \"<string>\",\n \"name\": \"<string>\",\n \"inbound_agent_id\": \"<string>\",\n \"sip_trunk_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"number": "<string>",
"sip_trunk": {
"id": "<string>",
"is_managed": true,
"name": "<string>"
},
"inbound_agent": {
"id": "<string>",
"name": "<string>",
"avatar": "<string>"
},
"spam_data": {},
"friendly_name": "<string>",
"tellows_data": {}
}{
"code": "<string>",
"message": "<string>",
"detail": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"type": "<string>"
}
]
}{
"code": "<string>",
"message": "<string>",
"detail": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"type": "<string>"
}
]
}Phone Numbers
Update phone number
Update a phone number’s E.164 value, name, SIP trunk link, or inbound agent assignment.
PATCH
/
v1
/
accounts
/
{account_id}
/
phone-numbers
/
{phone_number_id}
Update phone number
curl --request PATCH \
--url https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"number": "<string>",
"name": "<string>",
"inbound_agent_id": "<string>",
"sip_trunk_id": "<string>"
}
'import requests
url = "https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}"
payload = {
"number": "<string>",
"name": "<string>",
"inbound_agent_id": "<string>",
"sip_trunk_id": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
number: '<string>',
name: '<string>',
inbound_agent_id: '<string>',
sip_trunk_id: '<string>'
})
};
fetch('https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}"
payload := strings.NewReader("{\n \"number\": \"<string>\",\n \"name\": \"<string>\",\n \"inbound_agent_id\": \"<string>\",\n \"sip_trunk_id\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
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://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"number\": \"<string>\",\n \"name\": \"<string>\",\n \"inbound_agent_id\": \"<string>\",\n \"sip_trunk_id\": \"<string>\"\n}")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}",
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([
'number' => '<string>',
'name' => '<string>',
'inbound_agent_id' => '<string>',
'sip_trunk_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.itellico.ai/v1/accounts/{account_id}/phone-numbers/{phone_number_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"number\": \"<string>\",\n \"name\": \"<string>\",\n \"inbound_agent_id\": \"<string>\",\n \"sip_trunk_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"number": "<string>",
"sip_trunk": {
"id": "<string>",
"is_managed": true,
"name": "<string>"
},
"inbound_agent": {
"id": "<string>",
"name": "<string>",
"avatar": "<string>"
},
"spam_data": {},
"friendly_name": "<string>",
"tellows_data": {}
}{
"code": "<string>",
"message": "<string>",
"detail": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"type": "<string>"
}
]
}{
"code": "<string>",
"message": "<string>",
"detail": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"type": "<string>"
}
]
}Authorizations
Body
application/json
Response
OK
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Maximum string length:
100Tellows spam check data including score, complaints, caller info, and check timestamp
Was this page helpful?
⌘I