{
"OrderId": "JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4",
"CurrentCarrierName": "Updated Carrier",
"CurrentAccountNumber": "46512222",
"CurrentAccountPassword": "0000",
"PortInDate": "2026-06-01",
"TargetPortinClassification": "Mobile",
"SubscriberName": "John Doe",
"ICCID": "89014103211118510720",
"CurrentBillingAddress": {
"Street1": "123 N Address Way",
"Street2": "Suite 010",
"City": "Townsville",
"State": "UT",
"Zip": "84048"
}
}curl -X POST https://api.telegent.com/v1.0/numbers/portin/update \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"OrderId": "JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4",
"CurrentCarrierName": "Updated Carrier",
"CurrentAccountNumber": "46512222",
"CurrentAccountPassword": "0000",
"PortInDate": "2026-06-01",
"TargetPortinClassification": "Mobile",
"SubscriberName": "John Doe",
"ICCID": "89014103211118510720",
"CurrentBillingAddress": {
"Street1": "123 N Address Way",
"City": "Townsville",
"State": "UT",
"Zip": "84048"
}
}'import requests
url = "https://api.telegent.com/v1.0/numbers/portin/update"
payload = {
"OrderId": "JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4",
"CurrentCarrierName": "Updated Carrier",
"CurrentAccountNumber": "46512222",
"CurrentAccountPassword": "0000",
"CurrentBillingAddress": {
"Street1": "123 N Address Way",
"Street2": "Suite 010",
"City": "Townsville",
"State": "UT",
"Zip": "84048"
},
"PortInDate": "2026-06-01",
"TargetPortinClassification": "Mobile",
"SubscriberName": "John Doe",
"ICCID": "89014103211118510720"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
OrderId: 'JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4',
CurrentCarrierName: 'Updated Carrier',
CurrentAccountNumber: '46512222',
CurrentAccountPassword: '0000',
CurrentBillingAddress: {
Street1: '123 N Address Way',
Street2: 'Suite 010',
City: 'Townsville',
State: 'UT',
Zip: '84048'
},
PortInDate: '2026-06-01',
TargetPortinClassification: 'Mobile',
SubscriberName: 'John Doe',
ICCID: '89014103211118510720'
})
};
fetch('https://api.telegent.com/v1.0/numbers/portin/update', 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.telegent.com/v1.0/numbers/portin/update",
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([
'OrderId' => 'JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4',
'CurrentCarrierName' => 'Updated Carrier',
'CurrentAccountNumber' => '46512222',
'CurrentAccountPassword' => '0000',
'CurrentBillingAddress' => [
'Street1' => '123 N Address Way',
'Street2' => 'Suite 010',
'City' => 'Townsville',
'State' => 'UT',
'Zip' => '84048'
],
'PortInDate' => '2026-06-01',
'TargetPortinClassification' => 'Mobile',
'SubscriberName' => 'John Doe',
'ICCID' => '89014103211118510720'
]),
CURLOPT_HTTPHEADER => [
"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.telegent.com/v1.0/numbers/portin/update"
payload := strings.NewReader("{\n \"OrderId\": \"JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4\",\n \"CurrentCarrierName\": \"Updated Carrier\",\n \"CurrentAccountNumber\": \"46512222\",\n \"CurrentAccountPassword\": \"0000\",\n \"CurrentBillingAddress\": {\n \"Street1\": \"123 N Address Way\",\n \"Street2\": \"Suite 010\",\n \"City\": \"Townsville\",\n \"State\": \"UT\",\n \"Zip\": \"84048\"\n },\n \"PortInDate\": \"2026-06-01\",\n \"TargetPortinClassification\": \"Mobile\",\n \"SubscriberName\": \"John Doe\",\n \"ICCID\": \"89014103211118510720\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.telegent.com/v1.0/numbers/portin/update")
.header("Content-Type", "application/json")
.body("{\n \"OrderId\": \"JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4\",\n \"CurrentCarrierName\": \"Updated Carrier\",\n \"CurrentAccountNumber\": \"46512222\",\n \"CurrentAccountPassword\": \"0000\",\n \"CurrentBillingAddress\": {\n \"Street1\": \"123 N Address Way\",\n \"Street2\": \"Suite 010\",\n \"City\": \"Townsville\",\n \"State\": \"UT\",\n \"Zip\": \"84048\"\n },\n \"PortInDate\": \"2026-06-01\",\n \"TargetPortinClassification\": \"Mobile\",\n \"SubscriberName\": \"John Doe\",\n \"ICCID\": \"89014103211118510720\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.telegent.com/v1.0/numbers/portin/update")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"OrderId\": \"JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4\",\n \"CurrentCarrierName\": \"Updated Carrier\",\n \"CurrentAccountNumber\": \"46512222\",\n \"CurrentAccountPassword\": \"0000\",\n \"CurrentBillingAddress\": {\n \"Street1\": \"123 N Address Way\",\n \"Street2\": \"Suite 010\",\n \"City\": \"Townsville\",\n \"State\": \"UT\",\n \"Zip\": \"84048\"\n },\n \"PortInDate\": \"2026-06-01\",\n \"TargetPortinClassification\": \"Mobile\",\n \"SubscriberName\": \"John Doe\",\n \"ICCID\": \"89014103211118510720\"\n}"
response = http.request(request)
puts response.read_body{
"OrderId": "JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4",
"Status": "Updated",
"Message": "Port-in order updated successfully"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}Numbers - Update Port In
Update an existing port-in order with new information such as carrier details, account credentials, or billing address before the port completes.
What this does: Returns confirmation that the port-in order has been updated. Use this before the port completes if the carrier details or billing address provided were incorrect.
Next steps:
- Check order status —
GET /v1.0/numbers/order - Cancel if needed —
POST /v1.0/numbers/portin/cancel
{
"OrderId": "JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4",
"CurrentCarrierName": "Updated Carrier",
"CurrentAccountNumber": "46512222",
"CurrentAccountPassword": "0000",
"PortInDate": "2026-06-01",
"TargetPortinClassification": "Mobile",
"SubscriberName": "John Doe",
"ICCID": "89014103211118510720",
"CurrentBillingAddress": {
"Street1": "123 N Address Way",
"Street2": "Suite 010",
"City": "Townsville",
"State": "UT",
"Zip": "84048"
}
}curl -X POST https://api.telegent.com/v1.0/numbers/portin/update \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"OrderId": "JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4",
"CurrentCarrierName": "Updated Carrier",
"CurrentAccountNumber": "46512222",
"CurrentAccountPassword": "0000",
"PortInDate": "2026-06-01",
"TargetPortinClassification": "Mobile",
"SubscriberName": "John Doe",
"ICCID": "89014103211118510720",
"CurrentBillingAddress": {
"Street1": "123 N Address Way",
"City": "Townsville",
"State": "UT",
"Zip": "84048"
}
}'import requests
url = "https://api.telegent.com/v1.0/numbers/portin/update"
payload = {
"OrderId": "JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4",
"CurrentCarrierName": "Updated Carrier",
"CurrentAccountNumber": "46512222",
"CurrentAccountPassword": "0000",
"CurrentBillingAddress": {
"Street1": "123 N Address Way",
"Street2": "Suite 010",
"City": "Townsville",
"State": "UT",
"Zip": "84048"
},
"PortInDate": "2026-06-01",
"TargetPortinClassification": "Mobile",
"SubscriberName": "John Doe",
"ICCID": "89014103211118510720"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
OrderId: 'JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4',
CurrentCarrierName: 'Updated Carrier',
CurrentAccountNumber: '46512222',
CurrentAccountPassword: '0000',
CurrentBillingAddress: {
Street1: '123 N Address Way',
Street2: 'Suite 010',
City: 'Townsville',
State: 'UT',
Zip: '84048'
},
PortInDate: '2026-06-01',
TargetPortinClassification: 'Mobile',
SubscriberName: 'John Doe',
ICCID: '89014103211118510720'
})
};
fetch('https://api.telegent.com/v1.0/numbers/portin/update', 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.telegent.com/v1.0/numbers/portin/update",
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([
'OrderId' => 'JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4',
'CurrentCarrierName' => 'Updated Carrier',
'CurrentAccountNumber' => '46512222',
'CurrentAccountPassword' => '0000',
'CurrentBillingAddress' => [
'Street1' => '123 N Address Way',
'Street2' => 'Suite 010',
'City' => 'Townsville',
'State' => 'UT',
'Zip' => '84048'
],
'PortInDate' => '2026-06-01',
'TargetPortinClassification' => 'Mobile',
'SubscriberName' => 'John Doe',
'ICCID' => '89014103211118510720'
]),
CURLOPT_HTTPHEADER => [
"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.telegent.com/v1.0/numbers/portin/update"
payload := strings.NewReader("{\n \"OrderId\": \"JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4\",\n \"CurrentCarrierName\": \"Updated Carrier\",\n \"CurrentAccountNumber\": \"46512222\",\n \"CurrentAccountPassword\": \"0000\",\n \"CurrentBillingAddress\": {\n \"Street1\": \"123 N Address Way\",\n \"Street2\": \"Suite 010\",\n \"City\": \"Townsville\",\n \"State\": \"UT\",\n \"Zip\": \"84048\"\n },\n \"PortInDate\": \"2026-06-01\",\n \"TargetPortinClassification\": \"Mobile\",\n \"SubscriberName\": \"John Doe\",\n \"ICCID\": \"89014103211118510720\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.telegent.com/v1.0/numbers/portin/update")
.header("Content-Type", "application/json")
.body("{\n \"OrderId\": \"JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4\",\n \"CurrentCarrierName\": \"Updated Carrier\",\n \"CurrentAccountNumber\": \"46512222\",\n \"CurrentAccountPassword\": \"0000\",\n \"CurrentBillingAddress\": {\n \"Street1\": \"123 N Address Way\",\n \"Street2\": \"Suite 010\",\n \"City\": \"Townsville\",\n \"State\": \"UT\",\n \"Zip\": \"84048\"\n },\n \"PortInDate\": \"2026-06-01\",\n \"TargetPortinClassification\": \"Mobile\",\n \"SubscriberName\": \"John Doe\",\n \"ICCID\": \"89014103211118510720\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.telegent.com/v1.0/numbers/portin/update")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"OrderId\": \"JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4\",\n \"CurrentCarrierName\": \"Updated Carrier\",\n \"CurrentAccountNumber\": \"46512222\",\n \"CurrentAccountPassword\": \"0000\",\n \"CurrentBillingAddress\": {\n \"Street1\": \"123 N Address Way\",\n \"Street2\": \"Suite 010\",\n \"City\": \"Townsville\",\n \"State\": \"UT\",\n \"Zip\": \"84048\"\n },\n \"PortInDate\": \"2026-06-01\",\n \"TargetPortinClassification\": \"Mobile\",\n \"SubscriberName\": \"John Doe\",\n \"ICCID\": \"89014103211118510720\"\n}"
response = http.request(request)
puts response.read_body{
"OrderId": "JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4",
"Status": "Updated",
"Message": "Port-in order updated successfully"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}Body
The order ID of the port-in request to update
"JNUOID-6e3eb213-baf1-47bb-9db0-5d7d09d4b7b4"
Updated name of the losing carrier
"Updated Carrier"
Updated account number with current carrier
"46512222"
Updated account PIN/password with current carrier
"0000"
Show child attributes
Show child attributes
Requested date for the port to complete (YYYY-MM-DD)
"2026-06-01"
Target classification for the porting number (e.g. Mobile, Landline)
"Mobile"
Updated subscriber name
"John Doe"
SIM card ICCID. Required only for pSIM port-ins.
"89014103211118510720"
Response
Update Port In
The response is of type object.