UpViral is the Ultimate Viral Referral Platform. It allows you to run viral campaigns - such as contests, giveaways and more.
Go to siteUpViral is a platform designed to create and run referral campaigns with ease. With the UpViral API, you can automate the collection of lead data, manage contests, and track the performance of your campaigns directly within Pipedream. This allows for a seamless integration of viral marketing efforts into your existing business processes. By leveraging the API, you can trigger actions in other apps based on campaign results, synchronize lead data with CRM systems, and even automate the distribution of rewards to contest winners.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
upviral: {
type: "app",
app: "upviral",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.upviral.com/api/v1`,
params: {
uvapikey: `${this.upviral.$auth.api_key}`,
uvmethod: `lists`,
},
})
},
})
Automated Lead Sync with CRM: Sync new leads from UpViral campaigns directly to a CRM like Salesforce or Moskit. Each time a lead is captured in UpViral, a Pipedream workflow can automatically create or update a contact in the CRM, ensuring your sales team always has the latest information at their fingertips.
Dynamic Email Follow-Ups: Integrate UpViral with an email marketing service like SendGrid to send personalized follow-up emails. When someone enters your campaign, use Pipedream to trigger a series of targeted emails that encourage participants to share your campaign, keeping them engaged and amplifying your campaign's reach.
Real-Time Analytics Dashboard: Pipe campaign performance data from UpViral into a real-time analytics dashboard like Google Sheets or Data Studio. Use Pipedream to periodically fetch data such as referrals, leads, and conversion rates, then visualize this data to make informed decisions on the fly and adjust your marketing strategies accordingly.
Add a new contact in your particular campaign. See the documentation
UpViral uses API keys for authentication. When you connect your UpViral account, Pipedream securely stores the keys so you can easily authenticate to UpViral APIs in both code and no-code steps.
To get your UpViral API Key, go to your Profile, then click the "API Key" tab.