Email marketing, marketing automation, and CRM tools
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 each time a call to the phone number is completed. Configures a webhook in Twilio, tied to a phone number.
Emit new event each time an automation sends out webhook data.
Make a phone call, passing text that Twilio will speak to the recipient of the call. See the docs for more information
With ActiveCampaign's API, you can build a variety of integrations and
applications to help streamline your business. Here are just a few examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
activecampaign: {
type: "app",
app: "activecampaign",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.activecampaign.$auth.base_url}/api/3/accounts`,
headers: {
"Api-Token": `${this.activecampaign.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})