Cloud communications platform for building SMS, Voice & Messaging applications on an API built for global scale
Emit new event every time an SMS is sent to the phone number set. Configures a webhook in Twilio, tied to an incoming phone number.
Emit new event when an attendee checks in to an event
Emit new event when an attendee registers for an event
Make a phone call, passing text that Twilio will speak to the recipient of the call. See the docs for more information
Send an SMS with text and media files. See the docs for more information
With the Twilio API, you can build telephone applications that make and receive
phone calls, as well astext messaging applications that send and receive text
messages.
Some examples of applications you could build include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
twilio: {
type: "app",
app: "twilio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.twilio.com/2010-04-01/Accounts.json`,
auth: {
username: `${this.twilio.$auth.AccountSid}`,
password: `${this.twilio.$auth.AuthToken}`,
},
})
},
})
With the Eventbrite API, you can build applications that:
Here are some examples of things you can build using the Eventbrite API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
eventbrite: {
type: "app",
app: "eventbrite",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.eventbriteapi.com/v3/users/me/`,
headers: {
Authorization: `Bearer ${this.eventbrite.$auth.oauth_access_token}`,
},
})
},
})