import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const inexplicitNumberOrderResponse of client.inexplicitNumberOrders.list()) {
console.log(inexplicitNumberOrderResponse.id);
}{
"data": [
{
"id": "<string>",
"connection_id": "<string>",
"messaging_profile_id": "<string>",
"customer_reference": "<string>",
"billing_group_id": "<string>",
"ordering_groups": [
{
"country_iso": "<string>",
"phone_number_type": "<string>",
"count_requested": 123,
"count_allocated": 123,
"status": "pending",
"national_destination_code": "<string>",
"phone_number[starts_with]": "<string>",
"phone_number[ends_with]": "<string>",
"phone_number[contains]": "<string>",
"administrative_area": "<string>",
"strategy": "always",
"quickship": true,
"exclude_held_numbers": true,
"error_reason": "<string>",
"orders": [
{
"number_order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sub_number_order_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"total_pages": 3,
"page_number": 2,
"total_results": 55,
"page_size": 25
}
}Get a paginated list of inexplicit number orders.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const inexplicitNumberOrderResponse of client.inexplicitNumberOrders.list()) {
console.log(inexplicitNumberOrderResponse.id);
}{
"data": [
{
"id": "<string>",
"connection_id": "<string>",
"messaging_profile_id": "<string>",
"customer_reference": "<string>",
"billing_group_id": "<string>",
"ordering_groups": [
{
"country_iso": "<string>",
"phone_number_type": "<string>",
"count_requested": 123,
"count_allocated": 123,
"status": "pending",
"national_destination_code": "<string>",
"phone_number[starts_with]": "<string>",
"phone_number[ends_with]": "<string>",
"phone_number[contains]": "<string>",
"administrative_area": "<string>",
"strategy": "always",
"quickship": true,
"exclude_held_numbers": true,
"error_reason": "<string>",
"orders": [
{
"number_order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sub_number_order_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"total_pages": 3,
"page_number": 2,
"total_results": 55,
"page_size": 25
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The page number to load
x >= 1The size of the page
1 <= x <= 250Successful response with a list of inexplicit number orders.
Show child attributes
Unique identifier for the inexplicit number order
Connection id to apply to phone numbers that are purchased
Messaging profile id to apply to phone numbers that are purchased
Reference label for the customer
Billing group id to apply to phone numbers that are purchased
Show child attributes
Country where you would like to purchase phone numbers
Number type
Quantity of phone numbers requested
Quantity of phone numbers allocated
Status of the ordering group
pending, processing, failed, success, partial_success Filter by area code
Filter by the starting digits of the phone number
Filter by the ending digits of the phone number
Filter for phone numbers that contain the digits specified
Filter for phone numbers in a given state / province
Ordering strategy used
always, never Filter to exclude phone numbers that need additional time after to purchase to activate. Only applicable for +1 toll_free numbers.
Filter to exclude phone numbers that are currently on hold/reserved for your account.
Error reason if applicable
ISO 8601 formatted date indicating when the ordering group was created
ISO 8601 formatted date indicating when the ordering group was updated
ISO 8601 formatted date indicating when the resource was created
ISO 8601 formatted date indicating when the resource was updated
Was this page helpful?