Intuiface is a no-code platform dedicated to the delivery of rich interactive digital experiences that connect audiences to place.
Get a list of available experiences that can receive a message. See the docs.
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Send messages to any connected Intuiface Player running an experience that embeds the Web Triggers Interface Asset. See the docs.
Allows you to create a new contact list. See the docs here
The Intuiface API lets you interact with your interactive experiences crafted in Intuiface, a platform for creating and deploying interactive digital content. With Pipedream's robust serverless platform, you can automate tasks involving your Intuiface experiences. For instance, you can synchronize user interaction data with CRM systems, update live content dynamically, or monitor and control experiences remotely.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
intuiface: {
type: "app",
app: "intuiface",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.intuiface.com/webtriggers/v1/availableExperiences`,
headers: {
"x-api-key": `${this.intuiface.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})