What do you want to automate

with Vercel and Textlocal?

Prompt, edit and deploy AI agents that connect to Vercel, Textlocal and 2,500+ other apps in seconds.

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
Cancel Deployment with Vercel (Token Auth) API on New Contact from Textlocal API
Textlocal + Vercel
 
Try it
Cancel Deployment with Vercel (Token Auth) API on New Inbox Message from Textlocal API
Textlocal + Vercel
 
Try it
Cancel Deployment with Vercel (Token Auth) API on New Sent API Message from Textlocal API
Textlocal + Vercel
 
Try it
Create Contact with Textlocal API on Deployment Canceled (Instant) from Vercel API
Vercel + Textlocal
 
Try it
Create Contact with Textlocal API on Deployment Error (Instant) from Vercel API
Vercel + Textlocal
 
Try it
New Contact from the Textlocal API

Emit new contact

 
Try it
Deployment Canceled (Instant) from the Vercel API

Emit new event when a deployment is canceled See the documentation

 
Try it
New Inbox Message from the Textlocal API

Emit new inbox message.

 
Try it
Deployment Error (Instant) from the Vercel API

Emit new event when a deployment encounters an error See the documentation

 
Try it
New Sent API Message from the Textlocal API

Emit new message sent via Textlocal's API

 
Try it
Cancel Deployment with the Vercel API

Cancel a deployment which is currently building. See the documentation

 
Try it
Create Contact with the Textlocal API

Create a new contact. See the docs here

 
Try it
Create Deployment with the Vercel API

Create a new deployment from a GitHub repository. See the documentation

 
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
List Deployments with the Vercel API

List deployments under the account corresponding to the API token. See the documentation

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

Overview of Vercel

The Vercel API empowers developers to automate, manage, and interact with their Vercel projects and deployments directly through code. With the Vercel API on Pipedream, you can harness the power of serverless functions to create dynamic and responsive workflows. Automate deployment processes, sync deployment statuses with other tools, trigger notifications based on deployment events, or manage your domains and aliases—all within the seamless integration landscape of Pipedream.

Connect Vercel

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: {
    vercel_token_auth: {
      type: "app",
      app: "vercel_token_auth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.vercel.com/www/user`,
      headers: {
        Authorization: `Bearer ${this.vercel_token_auth.$auth.personal_access_token}`,
      },
    })
  },
})

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}`,
      },
    })
  },
})

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