Create and send professional newsletters with the CleverReach email marketing tool – incredibly fast, incredibly easy.
Emit new event when a new subscriber is added to a selected group. See the documentation
Emit new event when a receiver unsubscribes. See the documentation
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Adds a new subscriber to a mailing list. See the documentation
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
Updates the information of an existing subscriber. See the documentation
The CleverReach API lets you automate email marketing operations and integrate with your data sources for personalized campaigns. On Pipedream, use this API to craft and manage subscriber lists, send targeted emails, and track campaign performance. With an event-driven platform like Pipedream, you can trigger workflows from numerous sources, manipulate data, and connect CleverReach to other apps to automate complex tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cleverreach: {
type: "app",
app: "cleverreach",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.cleverreach.com/v3/groups.json`,
headers: {
Authorization: `Bearer ${this.cleverreach.$auth.oauth_access_token}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})