Dutch newsletter app (email marketing) that makes it exceptionally easy to send professional newsletters.
Emit new event on each created relation. See docs here (Go to Add webhook
)
Emit new event on each deleted relation. See docs here (Go to Add webhook
)
Emit new event on each updated relation. See docs here (Go to Add webhook
)
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Laposta is a robust email marketing tool, empowering users to build, send, and analyze email campaigns with ease. Leveraging the Laposta API on Pipedream, you can automate email list management, subscriber data synchronization, and campaign performance tracking. The API enables developers to create dynamic, serverless workflows that react to events across various apps, enrich contact information, or even trigger custom email sequences based on user behavior or other external cues.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
laposta: {
type: "app",
app: "laposta",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.laposta.nl/v2/list`,
auth: {
username: `${this.laposta.$auth.api_key}`,
password: ``,
},
})
},
})
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}`,
},
})
},
})