team-telnyx/ai

telnyx-numbers-ruby

>- Search, order, and manage phone numbers by location, features, and coverage.

First seen Apr 27, 2026

Installation

$ npx skills add team-telnyx/ai --skill telnyx-numbers-ruby

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from team-telnyx/ai · top by installs.

npx skills add team-telnyx/ai

Browse all from team-telnyx/ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 213
License LICENSE
Default branch main
Open issues 2
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
author
telnyx
product
numbers
language
ruby
generated_by
telnyx-openapi-pipeline
contract
v2

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 19,495 B
  • docs SUMMARY.md 103 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 12 installs

SKILL.md

<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->

Telnyx Numbers - Ruby

Installation

gem install telnyx

Setup

require "telnyx"

client = Telnyx::Client.new(
  api_key: ENV["TELNYX_API_KEY"], # This is the default and can be omitted
)

All examples below assume client is already initialized as shown above.

Error Handling

All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:

available_phone_numbers = client.available_phone_numbers.list
puts(available_phone_numbers)

Common error codes: 401 invalid API key, 403 insufficient permissions, 404 resource not found, 422 validation error (check field formats), 429 rate limited (retry with exponential backoff).

Important Notes

  • Phone numbers must be in E.164 format (e.g., +13125550001). Include the + prefix and country code. No spaces, dashes, or parentheses.
  • Pagination: Use .autopagingeach for automatic iteration: page.autopagingeach { |item| puts item.id }.

Reference Use Rules

Do not invent Telnyx parameters, enums, response fields, or webhook fields.

  • If the parameter, enum, or response field you need is not shown inline in this skill, read [references/api-details.md](references/api-details.md) before writing code.
  • Before using any operation in ## Additional Operations, read [the optional-parameters section](references/api-details.md#optional-parameters) and [the response-schemas section](references/api-details.md#response-schemas).

Core Tasks

Search available phone numbers

Number search is the entrypoint for provisioning. Agents need the search method, key query filters, and the fields returned for candidate numbers.

client.availablephonenumbers.list()GET /availablephonenumbers

Parameter Type Required Description
filter object No Consolidated filter parameter (deepObject style).
available_phone_numbers = client.available_phone_numbers.list

puts(available_phone_numbers)

Response wrapper:

  • items: availablephonenumbers.data
  • pagination: availablephonenumbers.meta

Primary item fields:

  • phone_number
  • record_type
  • quickship
  • reservable
  • best_effort
  • cost_information

Create a number order

Number ordering is the production provisioning step after number selection.

client.numberorders.create()POST /numberorders

Parameter Type Required Description
phone_numbers array[object] Yes
connection_id string (UUID) No Identifies the connection associated with this phone number.
messagingprofileid string (UUID) No Identifies the messaging profile associated with the phone n...
billinggroupid string (UUID) No Identifies the billing group associated with the phone numbe...
... +1 optional params in [references/api-details.md](references/api-details.md)
number_order = client.number_orders.create(phone_numbers: [{"phone_number": "+18005550101"}])
puts(number_order)

Primary response fields:

  • number_order.data.id
  • number_order.data.status
  • numberorder.data.phonenumbers_count
  • numberorder.data.requirementsmet
  • numberorder.data.messagingprofile_id
  • numberorder.data.connectionid

Check number order status

Order status determines whether provisioning completed or additional requirements are still blocking fulfillment.

client.numberorders.retrieve()GET /numberorders/{numberorderid}

Parameter Type Required Description
numberorderid string (UUID) Yes The number order ID.
number_order = client.number_orders.retrieve("550e8400-e29b-41d4-a716-446655440000")

puts(number_order)

Primary response fields:

  • number_order.data.id
  • number_order.data.status
  • numberorder.data.requirementsmet
  • numberorder.data.phonenumbers_count
  • numberorder.data.phonenumbers
  • numberorder.data.connectionid

Important Supporting Operations

Use these when the core tasks above are close to your flow, but you need a common variation or follow-up step.

Create a number reservation

Create or provision an additional resource when the core tasks do not cover this flow.

client.numberreservations.create()POST /numberreservations

Parameter Type Required Description
phone_numbers array[object] Yes
status enum (pending, success, failure) No The status of the entire reservation.
id string (UUID) No
record_type string No
... +3 optional params in [references/api-details.md](references/api-details.md)
number_reservation = client.number_reservations.create(phone_numbers: [{"phone_number": "+18005550101"}])
puts(number_reservation)

Primary response fields:

  • number_reservation.data.id
  • number_reservation.data.status
  • numberreservation.data.createdat
  • numberreservation.data.updatedat
  • numberreservation.data.customerreference
  • number_reservation.data.errors

Retrieve a number reservation

Fetch the current state before updating, deleting, or making control-flow decisions.

client.numberreservations.retrieve()GET /numberreservations/{numberreservationid}

Parameter Type Required Description
numberreservationid string (UUID) Yes The number reservation ID.
number_reservation = client.number_reservations.retrieve("550e8400-e29b-41d4-a716-446655440000")

puts(number_reservation)

Primary response fields:

  • number_reservation.data.id
  • number_reservation.data.status
  • numberreservation.data.createdat
  • numberreservation.data.updatedat
  • numberreservation.data.customerreference
  • number_reservation.data.errors

List Advanced Orders

Inspect available resources or choose an existing resource before mutating it.

client.advancedorders.list()GET /advancedorders

advanced_orders = client.advanced_orders.list

puts(advanced_orders)

Response wrapper:

  • items: advanced_orders.data

Primary item fields:

  • id
  • status
  • area_code
  • comments
  • country_code
  • customer_reference

Create Advanced Order

Create or provision an additional resource when the core tasks do not cover this flow.

client.advancedorders.create()POST /advancedorders

Parameter Type Required Description
phonenumbertype enum (local, mobile, tollfree, sharedcost, national, ...) No
requirementgroupid string (UUID) No The ID of the requirement group to associate with this advan...
country_code string (ISO 3166-1 alpha-2) No
... +5 optional params in [references/api-details.md](references/api-details.md)
advanced_order = client.advanced_orders.create

puts(advanced_order)

Primary response fields:

  • advanced_order.id
  • advanced_order.status
  • advancedorder.areacode
  • advanced_order.comments
  • advancedorder.countrycode
  • advancedorder.customerreference

Update Advanced Order

Modify an existing resource without recreating it.

client.advancedorders.updaterequirementgroup()PATCH /advancedorders/{advanced-order-id}/requirement_group

Parameter Type Required Description
advanced-order-id string (UUID) Yes Unique identifier of the advanced order.
phonenumbertype enum (local, mobile, tollfree, sharedcost, national, ...) No
requirementgroupid string (UUID) No The ID of the requirement group to associate with this advan...
country_code string (ISO 3166-1 alpha-2) No
... +5 optional params in [references/api-details.md](references/api-details.md)
response = client.advanced_orders.update_requirement_group("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e")

puts(response)

Primary response fields:

  • response.id
  • response.status
  • response.area_code
  • response.comments
  • response.country_code
  • response.customer_reference

Get Advanced Order

Fetch the current state before updating, deleting, or making control-flow decisions.

client.advancedorders.retrieve()GET /advancedorders/{order_id}

Parameter Type Required Description
order_id string (UUID) Yes Unique identifier of the order.
advanced_order = client.advanced_orders.retrieve("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e")

puts(advanced_order)

Primary response fields:

  • advanced_order.id
  • advanced_order.status
  • advancedorder.areacode
  • advanced_order.comments
  • advancedorder.countrycode
  • advancedorder.customerreference

List available phone number blocks

Inspect available resources or choose an existing resource before mutating it.

client.availablephonenumberblocks.list()GET /availablephonenumberblocks

Parameter Type Required Description
filter object No Consolidated filter parameter (deepObject style).
available_phone_number_blocks = client.available_phone_number_blocks.list

puts(available_phone_number_blocks)

Response wrapper:

  • items: availablephonenumber_blocks.data
  • pagination: availablephonenumber_blocks.meta

Primary item fields:

  • phone_number
  • cost_information
  • features
  • range
  • record_type
  • region_information

Retrieve all comments

Inspect available resources or choose an existing resource before mutating it.

client.comments.list()GET /comments

Parameter Type Required Description
filter object No Consolidated filter parameter (deepObject style).
comments = client.comments.list

puts(comments)

Response wrapper:

  • items: comments.data
  • pagination: comments.meta

Primary item fields:

  • id
  • body
  • created_at
  • updated_at
  • commentrecordid
  • commentrecordtype

Additional Operations

Use the core tasks above first. The operations below are indexed here with exact SDK methods and required params; use [references/api-details.md](references/api-details.md) for full optional params, response schemas, and lower-frequency webhook payloads. Before using any operation below, read [the optional-parameters section](references/api-details.md#optional-parameters) and [the response-schemas section](references/api-details.md#response-schemas) so you do not guess missing fields.

Operation SDK method Endpoint Use when Required params
Create a comment client.comments.create() POST /comments Create or provision an additional resource when the core tasks do not cover this flow. None
Retrieve a comment client.comments.retrieve() GET /comments/{id} Fetch the current state before updating, deleting, or making control-flow decisions. id
Mark a comment as read client.comments.markasread() PATCH /comments/{id}/read Modify an existing resource without recreating it. id
Get country coverage client.country_coverage.retrieve() GET /country_coverage Inspect available resources or choose an existing resource before mutating it. None
Get coverage for a specific country client.countrycoverage.retrievecountry() GET /countrycoverage/countries/{countrycode} Fetch the current state before updating, deleting, or making control-flow decisions. country_code
List customer service records client.customerservicerecords.list() GET /customerservicerecords Inspect available resources or choose an existing resource before mutating it. None
Create a customer service record client.customerservicerecords.create() POST /customerservicerecords Create or provision an additional resource when the core tasks do not cover this flow. None
Verify CSR phone number coverage client.customerservicerecords.verifyphonenumber_coverage() POST /customerservicerecords/phonenumbercoverages Create or provision an additional resource when the core tasks do not cover this flow. None
Get a customer service record client.customerservicerecords.retrieve() GET /customerservicerecords/{customerservicerecord_id} Fetch the current state before updating, deleting, or making control-flow decisions. customerservicerecord_id
List inexplicit number orders client.inexplicitnumberorders.list() GET /inexplicitnumberorders Inspect available resources or choose an existing resource before mutating it. None
Create an inexplicit number order client.inexplicitnumberorders.create() POST /inexplicitnumberorders Create or provision an additional resource when the core tasks do not cover this flow. ordering_groups
Retrieve an inexplicit number order client.inexplicitnumberorders.retrieve() GET /inexplicitnumberorders/{id} Fetch the current state before updating, deleting, or making control-flow decisions. id
Create an inventory coverage request client.inventory_coverage.list() GET /inventory_coverage Inspect available resources or choose an existing resource before mutating it. None
List mobile network operators client.mobilenetworkoperators.list() GET /mobilenetworkoperators Inspect available resources or choose an existing resource before mutating it. None
List network coverage locations client.network_coverage.list() GET /network_coverage Inspect available resources or choose an existing resource before mutating it. None
List number block orders client.numberblockorders.list() GET /numberblockorders Inspect available resources or choose an existing resource before mutating it. None
Create a number block order client.numberblockorders.create() POST /numberblockorders Create or provision an additional resource when the core tasks do not cover this flow. starting_number, range
Retrieve a number block order client.numberblockorders.retrieve() GET /numberblockorders/{numberblockorder_id} Fetch the current state before updating, deleting, or making control-flow decisions. numberblockorder_id
Retrieve a list of phone numbers associated to orders client.numberorderphone_numbers.list() GET /numberorderphone_numbers Inspect available resources or choose an existing resource before mutating it. None
Retrieve a single phone number within a number order. client.numberorderphone_numbers.retrieve() GET /numberorderphonenumbers/{numberorderphonenumber_id} Fetch the current state before updating, deleting, or making control-flow decisions. numberorderphonenumberid
Update requirements for a single phone number within a number order. client.numberorderphonenumbers.updaterequirements() PATCH /numberorderphonenumbers/{numberorderphonenumber_id} Modify an existing resource without recreating it. numberorderphonenumberid
List number orders client.number_orders.list() GET /number_orders Create or inspect provisioning orders for number purchases. None
Update a number order client.number_orders.update() PATCH /numberorders/{numberorder_id} Modify an existing resource without recreating it. numberorderid
List number reservations client.number_reservations.list() GET /number_reservations Inspect available resources or choose an existing resource before mutating it. None
Extend a number reservation client.numberreservations.actions.extend() POST /numberreservations/{numberreservation_id}/actions/extend Trigger a follow-up action in an existing workflow rather than creating a new top-level resource. numberreservationid
Retrieve the features for a list of numbers client.numbers_features.create() POST /numbers_features Create or provision an additional resource when the core tasks do not cover this flow. phone_numbers
Lists the phone number blocks jobs client.phonenumberblocks.jobs.list() GET /phonenumberblocks/jobs Inspect available resources or choose an existing resource before mutating it. None
Deletes all numbers associated with a phone number block client.phonenumberblocks.jobs.deletephonenumber_block() POST /phonenumberblocks/jobs/deletephonenumber_block Create or provision an additional resource when the core tasks do not cover this flow. phonenumberblock_id
Retrieves a phone number blocks job client.phonenumberblocks.jobs.retrieve() GET /phonenumberblocks/jobs/{id} Fetch the current state before updating, deleting, or making control-flow decisions. id
List sub number orders client.subnumberorders.list() GET /subnumberorders Inspect available resources or choose an existing resource before mutating it. None
Retrieve a sub number order client.subnumberorders.retrieve() GET /subnumberorders/{subnumberorder_id} Fetch the current state before updating, deleting, or making control-flow decisions. subnumberorder_id
Update a sub number order's requirements client.subnumberorders.update() PATCH /subnumberorders/{subnumberorder_id} Modify an existing resource without recreating it. subnumberorder_id
Cancel a sub number order client.subnumberorders.cancel() PATCH /subnumberorders/{subnumberorder_id}/cancel Modify an existing resource without recreating it. subnumberorder_id
Create a sub number orders report client.subnumberorders_report.create() POST /subnumberorders_report Create or provision an additional resource when the core tasks do not cover this flow. None
Retrieve a sub number orders report client.subnumberorders_report.retrieve() GET /subnumberordersreport/{reportid} Fetch the current state before updating, deleting, or making control-flow decisions. report_id
Download a sub number orders report client.subnumberorders_report.download() GET /subnumberordersreport/{reportid}/download Fetch the current state before updating, deleting, or making control-flow decisions. report_id

Other Webhook Events

Event data.event_type Description
numberOrderStatusUpdate number.order.status.update Number Order Status Update

For exhaustive optional parameters, full response schemas, and complete webhook payloads, see [references/api-details.md](references/api-details.md).