Nudgify is the Social Proof, FOMO and UX app that adds real-world context to your website in realtime.
Go to siteThe Nudgify API lets you create and manage social proof notifications, aimed at increasing user engagement and conversions on your website. By leveraging this API on Pipedream, you can automate the interaction with Nudgify notifications and integrate them into your site's workflow. This could include creating notifications based on user behavior, updating them in real-time as data changes, or deleting them once they're no longer needed. The Pipedream platform simplifies the process of working with the Nudgify API by handling authentication, providing a code-free interface for setting up workflows, and enabling connections with numerous other apps for extended functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nudgify: {
type: "app",
app: "nudgify",
}
},
async run({steps, $}) {
const data = {
"site_key": `${this.nudgify.$auth.site_key}`,
"conversions": [{
"date":"2021-04-15 04:29:42",
"email":"john0941034@gmail.com",
"first_name":"John",
"last_name":"Mendes",
"ip":"92.21.8.106",
"city":"Houston",
"state":"Texas",
"country":"US"
}],
}
return await axios($, {
method: "POST",
url: `https://app.nudgify.com/api/conversions`,
headers: {
Authorization: `Bearer ${this.nudgify.$auth.api_key}`,
"content-type": `application/json`,
"accept": `application/json`,
},
data,
})
},
})
Dynamic Social Proof Creation: Trigger a Nudgify notification on your website when a new order is placed. Use Pipedream's trigger for a new row in a Google Sheets spreadsheet, where the sheet is updated with order details, to send data to Nudgify for a "recent purchase" notification.
Real-time Stock Update Alerts: Set up a notification for low stock alerts on your e-commerce platform. When the inventory for a popular item dips below a certain threshold in your database (like AWS DynamoDB), it triggers a Pipedream workflow that sends a 'low stock' nudge via Nudgify, prompting users to act fast.
User Signup Acknowledgment: Acknowledge new user signups by sending a "Welcome" nudge. When a new user registers via your app (e.g., through Auth0), trigger a Pipedream workflow that calls the Nudgify API to display a personalized welcome message on your site, enhancing user onboarding.
Creates a sign-up nudge for a user in Nudgify. See docs here
Nudgify uses API keys for authentication. When you connect your Nudgify account, Pipedream securely stores the keys so you can easily authenticate to Nudgify APIs in both code and no-code steps.
You can find the Site and API Keys for each site in your Nudgify account on your Sites page.