ClickSend SMS

Business Communications. Solved.

Integrate the ClickSend SMS API with the Airtable (OAuth) API

Setup the ClickSend SMS API trigger to run a workflow which integrates with the Airtable (OAuth) API. Pipedream's integration platform allows you to integrate ClickSend SMS and Airtable (OAuth) remarkably fast. Free for developers.

Create Comment with Airtable (OAuth) API on New Incoming SMS (Instant) from ClickSend SMS API
ClickSend SMS + Airtable (OAuth)
 
Try it
Create Comment with Airtable (OAuth) API on Watch Voice Messages (Instant) from ClickSend SMS API
ClickSend SMS + Airtable (OAuth)
 
Try it
Create Contact with ClickSend SMS API on New Field from Airtable (OAuth) API
Airtable (OAuth) + ClickSend SMS
 
Try it
Create Contact with ClickSend SMS API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + ClickSend SMS
 
Try it
Create Contact with ClickSend SMS API on New or Modified Field from Airtable (OAuth) API
Airtable (OAuth) + ClickSend SMS
 
Try it
New Incoming SMS (Instant) from the ClickSend SMS API

Emit new event for each new incoming SMS message received. See the documentation

 
Try it
Watch Voice Messages (Instant) from the ClickSend SMS API

Emit new event when a new voice message is received or sent. See the documentation

 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
New Modified or Deleted Records (Instant) from the Airtable (OAuth) API

Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation

 
Try it
New or Modified Field from the Airtable (OAuth) API

Emit new event for each new or modified field in a table

 
Try it
Create Contact with the ClickSend SMS API

Creates a new contact in a specific list. See the documentation

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Send MMS with the ClickSend SMS API

Sends a new MMS to one or multiple recipients. See the documentation

 
Try it
Create Multiple Records with the Airtable (OAuth) API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation

 
Try it

Overview of ClickSend SMS

With ClickSend's SMS API, you can:

  • Send SMS messages
  • Check SMS delivery status
  • Receive inbound SMS messages
  • Set up SMS webhooks

Here are some examples of what you can build with the SMS API:

  • A service that sends SMS messages to users
  • A system that tracks the delivery status of SMS messages
  • A service that receioves inbound SMS messages
  • A system that sets up SMS webhooks

Connect ClickSend SMS

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: {
    clicksend: {
      type: "app",
      app: "clicksend",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://rest.clicksend.com/v3/account`,
      auth: {
        username: `${this.clicksend.$auth.username}`,
        password: `${this.clicksend.$auth.api_key}`,
      },
    })
  },
})

Overview of Airtable (OAuth)

Using the Airtable API, you can build applications that can:

  • Create and manage databases
  • Add, update, and delete records
  • Search for records
  • Sort and filter records
  • Display records in a variety of ways
  • Import and export data

Connect Airtable (OAuth)

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: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})

Community Posts

Calling All Developers – Run Code Faster with Pipedream
Calling All Developers – Run Code Faster with Pipedream
Developers, want to simplify your custom integrations? Dream of a single platform to organise all your API integrations in one place? Well, want and dream no more as we introduce you to our latest native integration partner Pipedream 🎉 🎉but more on them in a bit…
How to Create a Webhook in Pipedream and send SMS with ClickSend?
How to Create a Webhook in Pipedream and send SMS with ClickSend?
With Pipedream, developers can now build and run workflows with ClickSend integration. You can also add another integration of apps, datas and API on the workflow. What we will be doing on this article is to create a workflow where SMS is sent from ClickSend based on webhook trigger.