Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Configure voicemail, voice channels, and emergency (E911) services for your phone numbers. This skill provides JavaScript SDK examples.
.claude/skills/team-telnyx-telnyx-numbers-services-javascript/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 81% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 102% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 85% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 400% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 446% | 0% |
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
bashnpm install telnyx@6.74.2
javascriptimport Telnyx from 'telnyx'; const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted });
All examples below assume client is already initialized as shown above.
All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:
javascripttry { const result = await client.messages.send({ to: '+13125550001', from: '+13125550002', text: 'Hello' }); } catch (err) { if (err instanceof Telnyx.APIConnectionError) { console.error('Network error — check connectivity and retry'); } else if (err instanceof Telnyx.RateLimitError) { // 429: rate limited — wait and retry with exponential backoff const retryAfter = err.headers?.['retry-after'] || 1; await new Promise(r => setTimeout(r, retryAfter * 1000)); } else if (err instanceof Telnyx.APIError) { console.error(`API error ${err.status}: ${err.message}`); if (err.status === 422) { console.error('Validation error — check required fields and formats'); } } }
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).
for await (const item of result) { ... } to iterate through all pages automatically.Returns the non-US voice channels for your account. voice channels allow you to use Channel Billing for calls to your Telnyx phone numbers. Please check the Telnyx Support Articles section for full information and examples of how to utilize Channel Billing.
GET /channel_zones
javascript// Automatically fetches more pages as needed. for await (const channelZoneListResponse of client.channelZones.list()) { console.log(channelZoneListResponse.id); }
Returns: channels (int64), countries (arraystring]), created_at (string), id (string), name (string), record_type (enum: channel_zone), updated_at (string)
Update the number of Voice Channels for the Non-US Zones. This allows your account to handle multiple simultaneous inbound calls to Non-US numbers. Use this endpoint to increase or decrease your capacity based on expected call volume.
PUT /channel_zones/{channel_zone_id} — Required: channels
javascriptconst channelZone = await client.channelZones.update('channel_zone_id', { channels: 0 }); console.log(channelZone.id);
Returns: channels (int64), countries (arraystring]), created_at (string), id (string), name (string), record_type (enum: channel_zone), updated_at (string)
Returns the dynamic emergency addresses according to filters
GET /dynamic_emergency_addresses
javascript// Automatically fetches more pages as needed. for await (const dynamicEmergencyAddress of client.dynamicEmergencyAddresses.list()) { console.log(dynamicEmergencyAddress.id); }
Returns: administrative_area (string), country_code (enum: US, CA, PR), created_at (string), extended_address (string), house_number (string), house_suffix (string), id (string), locality (string), postal_code (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_name (string), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
Creates a dynamic emergency address.
POST /dynamic_emergency_addresses — Required: house_number, street_name, locality, administrative_area, postal_code, country_code
Optional: created_at (string), extended_address (string), house_suffix (string), id (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
javascriptconst dynamicEmergencyAddress = await client.dynamicEmergencyAddresses.create({ administrative_area: 'TX', country_code: 'US', house_number: '600', locality: 'Austin', postal_code: '78701', street_name: 'Congress', }); console.log(dynamicEmergencyAddress.data);
Returns: administrative_area (string), country_code (enum: US, CA, PR), created_at (string), extended_address (string), house_number (string), house_suffix (string), id (string), locality (string), postal_code (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_name (string), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
Returns the dynamic emergency address based on the ID provided
GET /dynamic_emergency_addresses/{id}
javascriptconst dynamicEmergencyAddress = await client.dynamicEmergencyAddresses.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(dynamicEmergencyAddress.data);
Returns: administrative_area (string), country_code (enum: US, CA, PR), created_at (string), extended_address (string), house_number (string), house_suffix (string), id (string), locality (string), postal_code (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_name (string), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
Deletes the dynamic emergency address based on the ID provided
DELETE /dynamic_emergency_addresses/{id}
javascriptconst dynamicEmergencyAddress = await client.dynamicEmergencyAddresses.delete( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(dynamicEmergencyAddress.data);
Returns: administrative_area (string), country_code (enum: US, CA, PR), created_at (string), extended_address (string), house_number (string), house_suffix (string), id (string), locality (string), postal_code (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_name (string), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
Returns the dynamic emergency endpoints according to filters
GET /dynamic_emergency_endpoints
javascript// Automatically fetches more pages as needed. for await (const dynamicEmergencyEndpoint of client.dynamicEmergencyEndpoints.list()) { console.log(dynamicEmergencyEndpoint.dynamic_emergency_address_id); }
Returns: callback_number (string), caller_name (string), created_at (string), dynamic_emergency_address_id (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
Creates a dynamic emergency endpoints.
POST /dynamic_emergency_endpoints — Required: dynamic_emergency_address_id, callback_number, caller_name
Optional: created_at (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
javascriptconst dynamicEmergencyEndpoint = await client.dynamicEmergencyEndpoints.create({ callback_number: '+13125550000', caller_name: 'Jane Doe Desk Phone', dynamic_emergency_address_id: '0ccc7b54-4df3-4bca-a65a-3da1ecc777f0', }); console.log(dynamicEmergencyEndpoint.data);
Returns: callback_number (string), caller_name (string), created_at (string), dynamic_emergency_address_id (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
Returns the dynamic emergency endpoint based on the ID provided
GET /dynamic_emergency_endpoints/{id}
javascriptconst dynamicEmergencyEndpoint = await client.dynamicEmergencyEndpoints.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(dynamicEmergencyEndpoint.data);
Returns: callback_number (string), caller_name (string), created_at (string), dynamic_emergency_address_id (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
Deletes the dynamic emergency endpoint based on the ID provided
DELETE /dynamic_emergency_endpoints/{id}
javascriptconst dynamicEmergencyEndpoint = await client.dynamicEmergencyEndpoints.delete( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(dynamicEmergencyEndpoint.data);
Returns: callback_number (string), caller_name (string), created_at (string), dynamic_emergency_address_id (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
Returns the US Zone voice channels for your account. voice channels allows you to use Channel Billing for calls to your Telnyx phone numbers. Please check the Telnyx Support Articles section for full information and examples of how to utilize Channel Billing.
GET /inbound_channels
javascriptconst inboundChannels = await client.inboundChannels.list(); console.log(inboundChannels.data);
Returns: channels (integer), record_type (string)
Update the number of Voice Channels for the US Zone. This allows your account to handle multiple simultaneous inbound calls to US numbers. Use this endpoint to increase or decrease your capacity based on expected call volume.
PATCH /inbound_channels — Required: channels
javascriptconst inboundChannel = await client.inboundChannels.update({ channels: 7 }); console.log(inboundChannel.data);
Returns: channels (integer), record_type (string)
Retrieve a list of all phone numbers using Channel Billing, grouped by Zone.
GET /list
javascriptconst response = await client.list.retrieveAll(); console.log(response.data);
Returns: number_of_channels (integer), numbers (arrayobject]), zone_id (string), zone_name (string)
Retrieve a list of phone numbers using Channel Billing for a specific Zone.
GET /list/{channel_zone_id}
javascriptconst response = await client.list.retrieveByZone('channel_zone_id'); console.log(response.data);
Returns: number_of_channels (integer), numbers (arrayobject]), zone_id (string), zone_name (string)
Returns the voicemail settings for a phone number
GET /phone_numbers/{phone_number_id}/voicemail
javascriptconst voicemail = await client.phoneNumbers.voicemail.retrieve('123455678900'); console.log(voicemail.data);
Returns: enabled (boolean), pin (string)
Create voicemail settings for a phone number
POST /phone_numbers/{phone_number_id}/voicemail
Optional: enabled (boolean), pin (string)
javascriptconst voicemail = await client.phoneNumbers.voicemail.create('123455678900'); console.log(voicemail.data);
Returns: enabled (boolean), pin (string)
Update voicemail settings for a phone number
PATCH /phone_numbers/{phone_number_id}/voicemail
Optional: enabled (boolean), pin (string)
javascriptconst voicemail = await client.phoneNumbers.voicemail.update('123455678900'); console.log(voicemail.data);
Returns: enabled (boolean), pin (string)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 15,010 | 8,992 | -40% | 1 | 1 | 0% | 3,011 | 5,451 | +81% | 0 | 0 | — |
case-02 | fail→pass | 14,577 | 9,409 | -35% | 1 | 1 | 0% | 2,771 | 5,595 | +102% | 0 | 0 | — |
case-03 | fail→pass | 15,086 | 9,701 | -36% | 1 | 1 | 0% | 2,993 | 5,548 | +85% | 0 | 0 | — |
case-04 | fail→pass | 4,460 | 5,170 | +16% | 1 | 1 | 0% | 926 | 4,633 | +400% | 0 | 0 | — |
case-05 | pass→pass | 8,507 | 7,343 | -14% | 1 | 1 | 0% | 1,634 | 5,048 | +209% | 0 | 0 | — |
case-06 | fail→pass | 4,138 | 5,076 | +23% | 1 | 1 | 0% | 830 | 4,535 | +446% | 0 | 0 | — |
case-07 | fail→pass | 8,442 | 3,742 | -56% | 1 | 1 | 0% | 1,627 | 4,221 | +159% | 0 | 0 | — |
case-20 | pass→pass | 4,338 | 2,860 | -34% | 1 | 1 | 0% | 850 | 4,047 | +376% | 0 | 0 | — |
case-08 | fail→pass | 17,096 | 4,685 | -73% | 1 | 1 | 0% | 3,312 | 4,390 | +33% | 0 | 0 | — |
case-09 | fail→pass | 10,475 | 4,255 | -59% | 1 | 1 | 0% | 1,868 | 4,348 | +133% | 0 | 0 | — |
case-10 | fail→pass | 9,778 | 3,812 | -61% | 1 | 1 | 0% | 1,912 | 4,149 | +117% | 0 | 0 | — |
case-11 | fail→pass | 8,010 | 5,921 | -26% | 1 | 1 | 0% | 1,497 | 4,720 | +215% | 0 | 0 | — |
case-12 | fail→pass | 11,662 | 3,276 | -72% | 1 | 1 | 0% | 2,223 | 4,047 | +82% | 0 | 0 | — |
case-13 | fail→pass | 10,950 | 2,688 | -75% | 1 | 1 | 0% | 1,997 | 3,988 | +100% | 0 | 0 | — |
case-14 | pass→pass | 7,153 | 3,800 | -47% | 1 | 1 | 0% | 1,328 | 4,206 | +217% | 0 | 0 | — |
case-15 | pass→pass | 6,529 | 5,217 | -20% | 1 | 1 | 0% | 1,335 | 4,596 | +244% | 0 | 0 | — |
case-16 | pass→pass | 5,612 | 3,125 | -44% | 1 | 1 | 0% | 964 | 4,120 | +327% | 0 | 0 | — |
case-17 | fail→pass | 5,072 | 2,579 | -49% | 1 | 1 | 0% | 899 | 4,016 | +347% | 0 | 0 | — |
case-18 | fail→pass | 10,164 | 3,496 | -66% | 1 | 1 | 0% | 1,992 | 4,078 | +105% | 0 | 0 | — |
case-19 | pass→pass | 6,697 | 3,663 | -45% | 1 | 1 | 0% | 1,457 | 4,285 | +194% | 0 | 0 | — |
case-21 | fail→pass | 4,999 | 3,079 | -38% | 1 | 1 | 0% | 933 | 4,102 | +340% | 0 | 0 | — |
case-22 | fail→pass | 7,953 | 3,664 | -54% | 1 | 1 | 0% | 1,491 | 4,169 | +180% | 0 | 0 | — |
case-23 | fail→pass | 9,311 | 3,855 | -59% | 1 | 1 | 0% | 1,911 | 4,305 | +125% | 0 | 0 | — |
case-24 | fail→pass | 11,232 | 7,742 | -31% | 1 | 1 | 0% | 2,315 | 5,106 | +121% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 24 cases were attempted. The headline lift of +75 percentage points is the difference between those two pass rates over the 24 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.