telnyx-account-javascript
Provides JavaScript SDK examples for managing Telnyx account features like payments, invoices, and webhooks.
Install this skill
Security score
The telnyx-account-javascript skill was audited on Mar 1, 2026 and we found 13 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Webhook reference - potential data exfiltration
| 4 | Manage account balance, payments, invoices, webhooks, and view audit logs and |
Webhook reference - potential data exfiltration
| 132 | ## List webhook deliveries |
Webhook reference - potential data exfiltration
| 134 | Lists webhook_deliveries for the authenticated user |
Webhook reference - potential data exfiltration
| 136 | `GET /webhook_deliveries` |
Webhook reference - potential data exfiltration
| 140 | for await (const webhookDeliveryListResponse of client.webhookDeliveries.list()) { |
Webhook reference - potential data exfiltration
| 141 | console.log(webhookDeliveryListResponse.id); |
Webhook reference - potential data exfiltration
| 145 | ## Find webhook_delivery details by ID |
Webhook reference - potential data exfiltration
| 147 | Provides webhook_delivery debug data, such as timestamps, delivery status and attempts. |
Webhook reference - potential data exfiltration
| 149 | `GET /webhook_deliveries/{id}` |
Webhook reference - potential data exfiltration
| 152 | const webhookDelivery = await client.webhookDeliveries.retrieve( |
Webhook reference - potential data exfiltration
| 156 | console.log(webhookDelivery.data); |
Access to .env file
| 29 | apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted |
Reading sensitive environment variables
| 29 | apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted |