Smoove is a marketing automation platform that will take your business to the next level! Easily create landing pages, manage your leads and send personalized emails. All in one easy to use system that will improve your marketing efforts.
Emit new event when a new subscriber is created. See the docs.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Adds a new contact to your account or update an existing contact. See the docs.
Checks if a contact exists in your account otherwise will create a contact. See the docs.
The Smoove API, part of the Sendbird platform, offers a suite of communication capabilities such as messaging, chat, and video interactions. With Pipedream, you can leverage these features to automate interactions, sync communication data with other services, and create event-driven workflows. For example, you can trigger actions in other applications when new messages arrive, synchronize user profiles across platforms, or automate notifications for chat events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
smoove: {
type: "app",
app: "smoove",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.smoove.io/v1/Lists`,
headers: {
Authorization: `Bearer ${this.smoove.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})