Tapfiliate

Affiliate tracking software to grow your business. Easily create, track and optimize your own affiliate marketing and referral programs with Tapfiliate.

Integrate the Tapfiliate API with the Formatting API

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

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
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
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Tapfiliate

The Tapfiliate API lets you build custom affiliate marketing programs, handling tracking, attribution, and commission management for your business. By leveraging it on Pipedream, you can automate affiliate-related processes, sync affiliate data with other tools, and create real-time, event-driven workflows. Whether you're syncing affiliate data to a CRM, sending customized email notifications, or updating affiliate info across platforms, Pipedream's serverless platform streamlines these tasks with minimal setup.

Connect Tapfiliate

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    tapfiliate: {
      type: "app",
      app: "tapfiliate",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.tapfiliate.com/1.6/affiliates/`,
      headers: {
        "X-Api-Key": `${this.tapfiliate.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

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