ReferralRock

Influence word of mouth instead of waiting for it to happen.

Integrate the ReferralRock API with the Schedule API

Setup the ReferralRock API trigger to run a workflow which integrates with the Schedule API. Pipedream's integration platform allows you to integrate ReferralRock 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 ReferralRock

ReferralRock's API unlocks the power of referral marketing within your applications, allowing you to automate the integration of your referral programs into your business processes. By leveraging this API on Pipedream, you can create dynamic, serverless workflows that respond to events in ReferralRock, synchronize data with other platforms, reward customer loyalty, and track the performance of your referral campaigns in real-time. This enables a seamless blend of referral marketing with your existing tech stack.

Connect ReferralRock

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: {
    referralrock: {
      type: "app",
      app: "referralrock",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.referralrock.com/api/programs`,
      auth: {
        username: `${this.referralrock.$auth.public_key}`,
        password: `${this.referralrock.$auth.private_key}`,
      },
    })
  },
})

Overview of Schedule

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.