Building sophisticated and modern communications applications is now easier than ever with the Telnyx API. As a comprehensive suite of telecommunication technology, the Telnyx API offers a variety of ways to build reliable cloud-based communications. With the Telnyx API, developers and businesses can easily build and deploy the following applications:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
telnyx: {
type: "app",
app: "telnyx",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.telnyx.com/v2/available_phone_numbers`,
headers: {
Authorization: `Bearer ${this.telnyx.$auth.api_key}`,
},
})
},
})
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.