Skip to main content
POST
/
porting_orders
/
{porting_order_id}
/
associated_phone_numbers
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const associatedPhoneNumber = await client.portingOrders.associatedPhoneNumbers.create(
  '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
  { action: 'keep', phone_number_range: {} },
);

console.log(associatedPhoneNumber.data);
{
  "data": {
    "id": "f24151b6-3389-41d3-8747-7dd8c681e5e2",
    "porting_order_id": "a24151b6-3389-41d3-8747-7dd8c681e5e2",
    "country_code": "GB",
    "phone_number_type": "local",
    "phone_number_range": {
      "start_at": "+441234567890",
      "end_at": "+441234567899"
    },
    "action": "keep",
    "record_type": "porting_associated_phone_number",
    "created_at": "2021-03-19T10:07:15.527Z",
    "updated_at": "2021-03-19T10:07:15.527Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

porting_order_id
string<uuid>
required

Identifies the Porting Order associated with the phone number

Body

application/json
phone_number_range
object
required
action
enum<string>
required

Specifies the action to take with this phone number during partial porting.

Available options:
keep,
disconnect
Example:

"keep"

Response

Successful response

data
object