Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Textlocal API

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

Create Contact with Textlocal API on Custom Interval from Schedule API
Schedule + Textlocal
 
Try it
Create Contact with Textlocal API on Daily schedule from Schedule API
Schedule + Textlocal
 
Try it
Create Contact with Textlocal API on Monthly Schedule from Schedule API
Schedule + Textlocal
 
Try it
Create Contact with Textlocal API on Weekly schedule from Schedule API
Schedule + Textlocal
 
Try it
Send SMS with Textlocal API on Custom Interval from Schedule API
Schedule + Textlocal
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Contact from the Textlocal API

Emit new contact

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Inbox Message from the Textlocal API

Emit new inbox message.

 
Try it
Create Contact with the Textlocal API

Create a new contact. See the docs here

 
Try it
Send SMS with the Textlocal API

This Action can be used to send text messages to either individual numbers or entire contact groups. See the docs here Note: While both numbers and group_id are optional parameters, one or the other must be included in the request for the message to be sent.

 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

Overview of Textlocal

The Textlocal API on Pipedream allows for robust SMS messaging capabilities within workflows. You can send notifications, alerts, and updates directly to mobile users, automate marketing campaigns, or integrate SMS into multi-channel communication strategies. By leveraging Pipedream's serverless platform, you can create complex workflows involving Textlocal for various application domains without managing infrastructure, boosting productivity and engagement through the power of automated text messaging.

Connect Textlocal

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: {
    textlocal: {
      type: "app",
      app: "textlocal",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.txtlocal.com/balance`,
      params: {
        apiKey: `${this.textlocal.$auth.api_key}`,
      },
    })
  },
})