telnyx-ai-assistants-c…
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
Send and receive SMS/MMS, handle opt-outs and delivery webhooks. Use for notifications, 2FA, or messaging apps.
$ npx -y skills add team-telnyx/ai --skill telnyx-messaging-javascript --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/telnyx-messaging-javascriptContext preview
The summary Claude sees to decide when to auto-load this skill.
Send and receive SMS/MMS, handle opt-outs and delivery webhooks. Use for notifications, 2FA, or messaging apps.
name: telnyx-messaging-javascript description: >- Send and receive SMS/MMS, handle opt-outs and delivery webhooks. Use for notifications, 2FA, or messaging apps. metadata: author: telnyx product: messaging language: javascript generated_by: telnyx-openapi-pipeline contract: v2
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
npm install telnyx@6.74.2
import 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:
try {
const response = await client.messages.send({
to: '+18445550001',
from: '+18005550101',
text: 'Hello from Telnyx!',
});
} catch (err) {
if (err instanceof Telnyx.APIConnectionError) {
console.error('Network error — check connectivity and retry');
} else if (err instanceof Telnyx.RateLimitError) {
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).
Do not invent Telnyx parameters, enums, response fields, or webhook fields.
Primary outbound messaging flow. Agents need exact request fields and delivery-related response fields.
`client.messages.send()` — `POST /messages`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `to` | string (E.164) | Yes | Receiving address (+E.164 formatted phone number or short co... | | `from` | string (E.164) | Yes | Sending address (+E.164 formatted phone number, alphanumeric... | | `text` | string | Yes | Message body (i.e., content) as a non-empty string. | | `messaging_profile_id` | string (UUID) | No | Unique identifier for a messaging profile. | | `media_urls` | array[string] | No | A list of media URLs. | | `webhook_url` | string (URL) | No | The URL where webhooks related to this message will be sent. | | ... | | | +7 optional params in [references/api-details.md](references/api-details.md) |
const response = await client.messages.send({
to: '+18445550001',
from: '+18005550101',
text: 'Hello from Telnyx!',
});
console.log(response.data);Primary response fields:
Common sender variant that requires different request shape.
`client.messages.sendWithAlphanumericSender()` — `POST /messages/alphanumeric_sender_id`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `from` | string (E.164) | Yes | A valid alphanumeric sender ID on the user's account. | | `to` | string (E.164) | Yes | Receiving address (+E.164 formatted phone number or short co... | | `text` | string | Yes | The message body. | | `messaging_profile_id` | string (UUID) | Yes | The messaging profile ID to use. | | `webhook_url` | string (URL) | No | Callback URL for delivery status updates. | | `webhook_failover_url` | string (URL) | No | Failover callback URL for delivery status updates. | | `use_profile_webhooks` | boolean | No | If true, use the messaging profile's webhook settings. |
const response = await client.messages.sendWithAlphanumericSender({
from: 'MyCompany',
messaging_profile_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
text: 'Hello from Telnyx!',
to: '+13125550001',
});
console.log(response.data);Primary response fields:
---
Telnyx signs webhooks with Ed25519. Each request includes `telnyx-signature-ed25519` and `telnyx-timestamp` headers. Always verify signatures in production:
// In your webhook handler (e.g., Express — use raw body, not parsed JSON): app
This repo is the one-stop shop for AI Agents and AI-first developers building with Telnyx — everything an agent needs to build production-grade applications and manage its account, from signup to funding.
Repo: team-telnyx/ai
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.