Proofly shows user behavior on the site, inspires action, creates rush interest, builds trust and, most importantly, sells.
Emit new event when notification data is received. See the documentation
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Switch a campaign's status between active and inactive. See the documentation
The Proofly API enables you to create, manage, and deploy social proof notifications on your website to boost conversions. It provides various endpoints that allow you to automate the process of updating notifications based on specific triggers or events. Using Pipedream, you can create workflows that integrate with the Proofly API to dynamically control these notifications, respond to analytics, and sync with your marketing or sales tools to optimize user engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
proofly: {
type: "app",
app: "proofly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://proofly.io/api/user`,
headers: {
"X-Api-Key": `${this.proofly.$auth.api_key}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.