Refersion

Manage and track your ambassador, influencer and affiliate marketing programs with ease.

Integrate the Refersion API with the Data Stores API

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

Create Affiliate with the Refersion API

Create a new affiliate. See the docs here

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Get Affiliate with the Refersion API

Get information about an affiliate. You can get an affiliate's information using their ID or code. See the docs here

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Manual Comission Credit with the Refersion API

Allows you to manually credit an affiliate with any commission amount. See the docs here

 
Try it

Overview of Refersion

Refersion is a powerful affiliate tracking platform that streamlines the process of managing, tracking, and growing your affiliate network. Through its API, you can automate affiliate registrations, commission tracking, and payout processes. Pipedream's serverless platform allows you to connect Refersion with hundreds of other apps to automate workflows, sync data across platforms, and respond to events in real time.

Connect Refersion

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    refersion: {
      type: "app",
      app: "refersion",
    }
  },
  async run({steps, $}) {
    const data = {
      "limit": `3`,
      "page": `1`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.refersion.com/v2/affiliate/list`,
      headers: {
        "Accept": `application/json`,
        "Content-Type": `application/json`,
        "Refersion-Public-Key": `{{custom_fields.api_key}}`,
        "Refersion-Secret-Key": `{{custom_fields.secret}}`,
      },
      data,
    })
  },
})

Overview of Data Stores

Data Stores are a key-value store that allow you to persist state and share data across workflows. You can perform CRUD operations, enabling dynamic data management within your serverless architecture. Use it to save results from API calls, user inputs, or interim data; then read, update, or enrich this data in subsequent steps or workflows. Data Stores simplify stateful logic and cross-workflow communication, making them ideal for tracking process statuses, aggregating metrics, or serving as a simple configuration store.

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})