← Email + Telnyx integrations

Dial Number with Telnyx API on New Email from Email API

Pipedream makes it easy to connect APIs for Telnyx, Email and 2,200+ other apps remarkably fast.

Trigger workflow on
New Email from the Email API
Next, do this
Dial Number with the Telnyx API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Email trigger and Telnyx action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Email trigger
    1. Connect your Email account
  3. Configure the Dial Number action
    1. Connect your Telnyx account
    2. Select a Call Control Application ID
    3. Select a Phone Number
    4. Configure To
    5. Optional- Configure From Display Name
    6. Optional- Configure Audio URL
    7. Optional- Configure Webhook URL
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Get a unique address where you can send emails to trigger your workflow.
Version:0.0.1
Key:email-new-email

Trigger Code

import email from "../../email.app.mjs";

export default {
  name: "New Email",
  version: "0.0.1",
  key: "email-new-email",
  description: "Get a unique address where you can send emails to trigger your workflow.",
  props: {
    email,
  },
  type: "source",
  methods: {},
  async run() {},
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
EmailemailappThis component uses the Email app.

Trigger Authentication

The Email API does not require authentication.

About Email

Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.

Action

Description:Dial a number or SIP URI from a given Call Control App. [See the documentation](https://developers.telnyx.com/api/call-control/dial-call)
Version:0.0.1
Key:telnyx-dial-number

Telnyx Overview

The Telnyx API offers a suite of telecommunication features enabling developers to manage voice, SMS, and other real-time communications. With Telnyx, you can programmatically send and receive text messages, handle voice calls, and control other telephony services using their robust API. Leveraging Pipedream's capabilities, this API can be hooked into workflows to automate complex tasks, react to incoming messages or calls, and integrate with countless other services for analytics, customer support, and more.

Action Code

import telnyxApp from "../../telnyx.app.mjs";

export default {
  key: "telnyx-dial-number",
  name: "Dial Number",
  description: "Dial a number or SIP URI from a given Call Control App. [See the documentation](https://developers.telnyx.com/api/call-control/dial-call)",
  version: "0.0.1",
  type: "action",
  props: {
    telnyxApp,
    callControlAppId: {
      propDefinition: [
        telnyxApp,
        "callControlAppId",
      ],
    },
    phoneNumber: {
      propDefinition: [
        telnyxApp,
        "phoneNumber",
      ],
    },
    to: {
      type: "string",
      label: "To",
      description: "The DID or SIP URI to dial out to",
    },
    fromDisplayName: {
      type: "string",
      label: "From Display Name",
      description: "The string to be used as the caller id name (SIP From Display Name) presented to the destination (to number).",
      optional: true,
    },
    audioUrl: {
      type: "string",
      label: "Audio URL",
      description: "The URL of a file to be played back to the callee when the call is answered. The URL can point to either a WAV or MP3 file.",
      optional: true,
    },
    webhookUrl: {
      type: "string",
      label: "Webhook URL",
      description: "Use this field to override the URL to which Telnyx will send subsequent webhooks for this call.",
      optional: true,
    },
  },
  async run({ $ }) {
    const response = await this.telnyxApp.dialNumber({
      $,
      data: {
        connection_id: this.callControlAppId,
        from: this.phoneNumber,
        to: this.to,
        from_display_name: this.fromDisplayName,
        audio_url: this.audioUrl,
        webhook_url: this.webhookUrl,
      },
    });
    $.export("$summary", "Successfully dialed number.");
    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
TelnyxtelnyxAppappThis component uses the Telnyx app.
Call Control Application IDcallControlAppIdstringSelect a value from the drop down menu.
Phone NumberphoneNumberstringSelect a value from the drop down menu.
Totostring

The DID or SIP URI to dial out to

From Display NamefromDisplayNamestring

The string to be used as the caller id name (SIP From Display Name) presented to the destination (to number).

Audio URLaudioUrlstring

The URL of a file to be played back to the callee when the call is answered. The URL can point to either a WAV or MP3 file.

Webhook URLwebhookUrlstring

Use this field to override the URL to which Telnyx will send subsequent webhooks for this call.

Action Authentication

Telnyx uses API keys for authentication. When you connect your Telnyx account, Pipedream securely stores the keys so you can easily authenticate to Telnyx APIs in both code and no-code steps.

The Telnyx API V2 uses API Keys to authenticate requests. You can view and manage your API Keys by logging into your Mission Control Portal account and navigating to the Auth V2 tab in the "Auth" section. See docs.

About Telnyx

Connectivity Made Simple

More Ways to Connect Telnyx + Email

Send Yourself an Email with Email API on New Call Received from Telnyx API
Telnyx + Email
 
Try it
Send Yourself an Email with Email API on New Phone Number from Telnyx API
Telnyx + Email
 
Try it
Get Messaging Profiles with Telnyx API on New Email from Email API
Email + Telnyx
 
Try it
Send Message with Telnyx API on New Email from Email API
Email + Telnyx
 
Try it
Get Phone Numbers with Telnyx API on New Email from Email API
Email + Telnyx
 
Try it
New Email from the Email API

Get a unique address where you can send emails to trigger your workflow.

 
Try it
New Call Received from the Telnyx API

Emit new event on an incoming call to a Call Control Application. See the documentation

 
Try it
New Phone Number from the Telnyx API

Emit new event when a new phone number is added See the documentation

 
Try it
Send Yourself an Email with the Email API

Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.

 
Try it
Dial Number with the Telnyx API

Dial a number or SIP URI from a given Call Control App. See the documentation

 
Try it
Get Messaging Profiles with the Telnyx API

Get a list of messaging profiles. See the documentation

 
Try it
Get Phone Numbers with the Telnyx API

Get a list of phone numbers. See the documentation

 
Try it
Retrieve a Message with the Telnyx API

Retrieve a message. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,200+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce
Salesforce
Web services API for interacting with Salesforce
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.