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.
Go to siteThe 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.
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`,
},
})
},
})
Sync Submissions to Google Sheets: Automatically add new Unbounce form submissions to a Google Sheet for easy tracking and analysis. This workflow can help you keep a running log of leads without manual data entry.
Trigger Email Campaigns with Mailchimp: Once a visitor submits a form on your Unbounce page, trigger an email campaign in Mailchimp. This creates a seamless follow-up process to engage leads immediately.
Update CRM Contacts in Salesforce: When a new lead is captured via Unbounce, create or update a contact in Salesforce. This ensures your sales team has the latest information without manual updates.
Emit new event when a new form submit is received.
Retrieve a list of all leads for a given page (including AMP), pop-up, or sticky-bar. See the documentation
Unbounce uses OAuth authentication. When you connect your Unbounce account, Pipedream will open a popup window where you can sign into Unbounce and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Unbounce API.
Pipedream requests the following authorization scopes when you connect your account:
full
GET
https://api.unbounce.com/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://api.unbounce.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://api.unbounce.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}