UpViral

UpViral is the Ultimate Viral Referral Platform. It allows you to run viral campaigns - such as contests, giveaways and more.

Integrate the UpViral API with the Formatting API

Setup the UpViral API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate UpViral and Formatting remarkably fast. Free for developers.

Add Contact with the UpViral API

Add a new contact in your particular campaign. See the documentation

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Add Points with the UpViral API

Add points in user profile. See the documentation

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it

Overview of UpViral

UpViral provides amazing opportunities for businesses to quickly and easily
build viral marketing campaigns, referral programs, giveaways and more. It
helps marketers to acquire new leads, increase website traffic, build an
engaged customer base, and most importantly, earn more sales. The power of the
UpViral API allows you to create powerful, automated, comprehensive and
cost-effective marketing campaigns.

Here is a list of some ideas of what you can do with UpViral API:

  • Create automated and comprehensive referral campaigns or as UpViral calls
    them 'Viral Quests'
  • Build a customer loyalty program
  • Create interactive games and giveaways
  • Design reward or contest campaigns
  • Build a referral credit system
  • Design customer onboarding programs
  • Generate survey campaigns
  • Develop sweepstakes
  • Automatically award bonuses
  • Create emails capture forms
  • And many more!

Connect UpViral

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})