import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const inexplicitNumberOrder = await client.inexplicitNumberOrders.retrieve(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
console.log(inexplicitNumberOrder.data);{
"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"
}
}Get an existing inexplicit number order by ID.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const inexplicitNumberOrder = await client.inexplicitNumberOrders.retrieve(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
console.log(inexplicitNumberOrder.data);{
"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"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Identifies the inexplicit number order
Successful response with details about an inexplicit number order.
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?