Empowering millions of digital businesses & creators with payments from crypto to fiat.
Go to siteThe Poof API lets you schedule and automate emails and SMS messages, making it a powerful tool for communication-based workflows. With Pipedream, you can connect the Poof API to hundreds of other services to craft custom automations. Trigger events, process data, and design complex interactions without managing a server infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
poof: {
type: "app",
app: "poof",
}
},
async run({steps, $}) {
const data = {
"crypto": `bitcoin`,
}
return await axios($, {
method: "post",
url: `https://www.poof.io/api/v2/balance`,
headers: {
"Authorization": `${this.poof.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
Automated Customer Follow-Up: Initiate a Poof API call to send follow-up emails or SMS messages after a customer completes a purchase on your e-commerce platform. This can involve thanking them, requesting feedback, or offering post-purchase support.
Event Reminder System: Use Pipedream to schedule reminders for events. When a user registers for an event on your website, trigger a workflow that sends out confirmation and reminder messages via Poof API as the event date approaches.
Marketing Campaigns Coordination: With Poof API on Pipedream, set up a workflow where marketing campaign leads captured through a form submission app, like Typeform, are automatically added to a Poof mailing list for a scheduled promotional campaign.
Emit new events when a payment is made in Poof. See the documentation
Creates a new deposit address in Poof. See the documentation
Poof uses API keys for authentication. When you connect your Poof account, Pipedream securely stores the keys so you can easily authenticate to Poof APIs in both code and no-code steps.