Rebrandly

Custom URL Shortener

Integrate the Rebrandly API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Click Received from Rebrandly API
Rebrandly + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Link from Rebrandly API
Rebrandly + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Click Received from Rebrandly API
Rebrandly + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Link from Rebrandly API
Rebrandly + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Click Received from Rebrandly API
Rebrandly + Formatting
 
Try it
New Click Received from the Rebrandly API

Emit new event on each new click received by a link.

 
Try it
New Link from the Rebrandly API

Emit new event on each new link created.

 
Try it
Create Link with the Rebrandly API

Creates a link. See docs here

 
Try it
[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
Update Link with the Rebrandly API

Updates a link. See docs here

 
Try it

Overview of Rebrandly

The Rebrandly API enables the creation, updating, and management of branded short links. Within Pipedream, you can leverage this API to automate custom URL shortening workflows, analyze link performance, and seamlessly integrate URL management into your business processes or applications.

Connect Rebrandly

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: {
    rebrandly: {
      type: "app",
      app: "rebrandly",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.rebrandly.com/v1/account`,
      headers: {
        Authorization: `Bearer ${this.rebrandly.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Formatting

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