Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Emit new event for new agreements with the specified status(es) See the documentation
Emit new event when any of the specified SendGrid events is received
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Allows you to create a new contact list. See the docs here
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 Concord API provides access to a contract management platform that lets users automate the creation, negotiation, signing, and management of contracts. With the API, you can leverage Concord's features in a programmatic way, allowing for integration with external systems and automation of workflows. Using Pipedream, you can connect Concord's capabilities to a multitude of other services, trigger workflows based on events within Concord, or perform operations in Concord in response to triggers from other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
concord: {
type: "app",
app: "concord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.concord.$auth.environment}.concordnow.com/api/rest/1/user/me`,
headers: {
"X-API-KEY": `${this.concord.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})