with ReachMail and Airtable?
Create one or more records in a table in a single operation with an array. See the documentation
The action will remove the recipient from the specified list. See the documentation
Create a new record or update an existing one. See the documentation
The ReachMail API lets you seamlessly integrate email marketing capabilities into your workflows on Pipedream. With it, you can automate email list management, campaign creation, and performance tracking. This flexibility opens up possibilities for custom email marketing automation, audience segmentation, and targeted outreach based on user actions or data from other apps. By harnessing the power of Pipedream's serverless platform, you can build workflows that trigger from various events and connect with numerous other services to create a sophisticated, automated email marketing machine.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { reachmail: { type: "app", app: "reachmail", } }, async run({steps, $}) { return await axios($, { url: ` https://services.reachmail.net/administration/users/current`, headers: { Authorization: `Bearer ${this.reachmail.$auth.api_token}`, "accept": `application/json`, }, }) }, }) 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}`, }, }) }, })