Computing-focused community centered around link aggregation and discussion.
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
Allows you to delete all email addresses on your blocks list. See the docs here
The lobste.rs API provides access to a wealth of information from the lobste.rs community, a computing-focused curated link aggregation site. It offers endpoints to fetch stories, comments, and user details, which can be integrated into various workflows on Pipedream. This integration allows you to monitor new content, track topics or user activity, and even collate data for analysis. With Pipedream, you can seamlessly connect lobste.rs with hundreds of other apps to create tailored automations without managing servers or writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lobste_rs: {
type: "app",
app: "lobste_rs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://lobste.rs/s/lc58pw/what_are_you_doing_this_week.json`,
})
},
})
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}`,
},
})
},
})