Unbounce

Unbounce landing pages have helped businesses turn billions of visitors into leads, sales, and signups. (Literally.) Combining that data with AI, Unbounce lets you create custom landing pages twice as fast as old-school builders.

Integrate the Unbounce API with the Cloudmersive API

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

Convert to PDF with Cloudmersive API on New Form Submission Received from Unbounce API
Unbounce + Cloudmersive
 
Try it
Screenshot Website with Cloudmersive API on New Form Submission Received from Unbounce API
Unbounce + Cloudmersive
 
Try it
Validate Email Address with Cloudmersive API on New Form Submission Received from Unbounce API
Unbounce + Cloudmersive
 
Try it
New Form Submission Received from the Unbounce API

Emit new event when a new form submit is received.

 
Try it
Get Page Lead with the Unbounce API

Get info of single Lead. See the documentation

 
Try it
Convert to PDF with the Cloudmersive API

Convert Office Word Documents (docx) to PDF See docs here

 
Try it
List Page Leads with the Unbounce API

Retrieve a list of all leads for a given page (including AMP), pop-up, or sticky-bar. See the documentation

 
Try it
Screenshot Website with the Cloudmersive API

Take a screenshot of a website See docs here

 
Try it
Validate Email Address with the Cloudmersive API

Validate an email address See docs here

 
Try it

Overview of Unbounce

The Unbounce API lets you tap into the powerful landing page platform to automate tasks and sync data with other services. Use it within Pipedream workflows to capture, analyze, and act on leads generated through your landing pages. Think of fetching form submissions, updating leads in a CRM, or dynamically modifying landing page content.

Connect Unbounce

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: {
    unbounce: {
      type: "app",
      app: "unbounce",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.unbounce.com/users/self`,
      headers: {
        Authorization: `Bearer ${this.unbounce.$auth.oauth_access_token}`,
        "Accept": `application/vnd.unbounce.api.v0.4+json`,
      },
    })
  },
})

Overview of Cloudmersive

The Cloudmersive API provides powerful tools for handling tasks like document conversion, data validation, virus scanning, and natural language processing. Integrating Cloudmersive with Pipedream allows you to automate complex processes with these abilities as triggers or steps in multi-stage workflows. This integration empowers you to streamline operations like sanitizing uploads before they hit your storage, parsing and converting user-submitted documents on-the-fly, or enhancing user engagement by leveraging language utilities.

Connect Cloudmersive

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    cloudmersive: {
      type: "app",
      app: "cloudmersive",
    }
  },
  async run({steps, $}) {
    const data = {
      "value": `support@cloudmersive.com`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.cloudmersive.com/validate/email/address/syntaxOnly`,
      headers: {
        "Apikey": `${this.cloudmersive.$auth.api_key}`,
      },
      data,
    })
  },
})