Telnyx

Connectivity Made Simple

Integrate the Telnyx API with the WooCommerce API

Setup the Telnyx API trigger to run a workflow which integrates with the WooCommerce API. Pipedream's integration platform allows you to integrate Telnyx and WooCommerce remarkably fast. Free for developers.

Get Messaging Profiles with Telnyx API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Telnyx
 
Try it
Get Messaging Profiles with Telnyx API on New Customer Event (Instant) from WooCommerce API
WooCommerce + Telnyx
 
Try it
Get Messaging Profiles with Telnyx API on New Order Event (Instant) from WooCommerce API
WooCommerce + Telnyx
 
Try it
Get Messaging Profiles with Telnyx API on New Product Event (Instant) from WooCommerce API
WooCommerce + Telnyx
 
Try it
Send Message with Telnyx API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Telnyx
 
Try it
New Coupon Event (Instant) from the WooCommerce API

Emit new event each time the specified coupon event(s) occur

 
Try it
New Customer Event (Instant) from the WooCommerce API

Emit new event each time the specified customer event(s) occur

 
Try it
New Order Event (Instant) from the WooCommerce API

Emit new event each time the specified order event(s) occur

 
Try it
New Product Event (Instant) from the WooCommerce API

Emit new event each time the specified product event(s) occur

 
Try it
Get Messaging Profiles with the Telnyx API

Get a list of messaging profiles. See documentation here

 
Try it
Create Customer with the WooCommerce API

Creates a new customer. See the docs

 
Try it
Send Message with the Telnyx API

Send an SMS or MMS message. See documentation here

 
Try it
Create Order with the WooCommerce API

Creates a new order. See the docs

 
Try it
Create Product with the WooCommerce API

Creates a new product. See the docs

 
Try it

Overview of Telnyx

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.

Connect Telnyx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of WooCommerce

WooCommerce is a customizable, open-source eCommerce platform built on WordPress. With the WooCommerce API, you can tap into the heart of your eCommerce store to read, create, update, and delete products, orders, and customers. On Pipedream, you can harness this API to automate routine tasks, sync data across platforms, and enhance customer experiences. By connecting WooCommerce to a wide array of apps and services, you can streamline operations, trigger personalized marketing, and analyze your sales data with greater ease.

Connect WooCommerce

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    woocommerce: {
      type: "app",
      app: "woocommerce",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.woocommerce.$auth.url}/wp-json/wc/v2/orders`,
      auth: {
        username: `${this.woocommerce.$auth.key}`,
        password: `${this.woocommerce.$auth.secret}`,
      },
    })
  },
})