import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const phoneNumberConfiguration = await client.portingOrders.phoneNumberConfigurations.create();
console.log(phoneNumberConfiguration.data);{
"data": [
{
"id": "eef3340b-8903-4466-b445-89b697315a3a",
"user_bundle_id": "daa4308e-742f-4867-97f2-3073db13319a",
"porting_phone_number_id": "f1486bae-f067-460c-ad43-73a92848f902",
"record_type": "porting_phone_number_configuration",
"created_at": "2021-03-19T10:07:15.527000Z",
"updated_at": "2021-03-19T10:07:15.527000Z"
}
]
}Creates a list of phone number configurations.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const phoneNumberConfiguration = await client.portingOrders.phoneNumberConfigurations.create();
console.log(phoneNumberConfiguration.data);{
"data": [
{
"id": "eef3340b-8903-4466-b445-89b697315a3a",
"user_bundle_id": "daa4308e-742f-4867-97f2-3073db13319a",
"porting_phone_number_id": "f1486bae-f067-460c-ad43-73a92848f902",
"record_type": "porting_phone_number_configuration",
"created_at": "2021-03-19T10:07:15.527000Z",
"updated_at": "2021-03-19T10:07:15.527000Z"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A list of phone number configuration parameters
20Show child attributes
Identifies the porting phone number to be configured.
"927f4687-318c-44bc-9f2f-22a5898143a4"
Identifies the user bundle to be associated with the porting phone number.
"ff901545-3e27-462a-ba9d-2b34654cab82"
Successful response
Show child attributes
Uniquely identifies this phone number configuration
"eef3340b-8903-4466-b445-89b697315a3a"
Identifies the associated user bundle
"daa4308e-742f-4867-97f2-3073db13319a"
Identifies the associated porting phone number
"f1486bae-f067-460c-ad43-73a92848f902"
Identifies the type of the resource.
"porting_phone_number_configuration"
ISO 8601 formatted date indicating when the resource was created.
"2021-03-19T10:07:15.527000Z"
ISO 8601 formatted date indicating when the resource was updated.
"2021-03-19T10:07:15.527000Z"
Was this page helpful?