Rewardful

Turn your biggest fans into your best marketers! Rewardful is a super easy way to setup affiliate & referral programs for SaaS, memberships, and ecommerce

Integrate the Rewardful API with the Schedule API

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

Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it

Overview of Rewardful

The Rewardful API offers an easy way to build rewards programs into your web
and mobile applications. With Rewardful you can create referral programs that
reward users for spreading the word about your product or service, implement
referral rewards to help drive more traffic to your website, or offer
content-based rewards and discounts.

The Rewardful API makes it easy to create a rich rewards program with functions
like tracking user referrals, sending out reward coupons and offers, and
displaying real-time analytics and insights.

Here are some examples of what you can create with the Rewardful API:

  • Create referral bonus systems for customers
  • Award points for purchases or reaching milestones
  • Offer rewards for users who return to your site or complete specific tasks
  • Track referrals and develop rewards for advocates
  • Offer content-based rewards and discount offers
  • Send out coupon codes and in-app notifications to users
  • Display real-time analytics and insights on the Rewardful dashboard
  • Reward customers for sharing or reviewing your products or services on social
    media

Connect Rewardful

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    rewardful: {
      type: "app",
      app: "rewardful",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.getrewardful.com/v1/affiliates`,
      auth: {
        username: `${this.rewardful.$auth.api_secret}`,
        password: ``,
      },
    })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.