Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Returns your business id and a list of all profile id’s and names. See the documentation
Allows you to create a new contact list. See the docs here
Creates a new recipient and sends a Starloop invite (Email | SMS | both) to your customer to leave a review. See the documentation
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})
The Starloop API provides a pathway to streamline customer feedback management by allowing the automation of review requests, monitoring of multiple review sites, and analysis of customer sentiment. With Pipedream, you can craft serverless workflows that leverage these capabilities, integrating Starloop's functionalities with other apps and services to amplify your customer relationship strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
starloop: {
type: "app",
app: "starloop",
}
},
async run({steps, $}) {
const data = {
"token": `${this.starloop.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://go.starloop.com/api/list_ids`,
headers: {
"Content-Type": `application/json`,
"accept": `application/json`,
},
data,
})
},
})