← Solve CRM + Unbounce integrations

Get Page Lead with Unbounce API on New Contact Tagged (Instant) from Solve CRM API

Pipedream makes it easy to connect APIs for Unbounce, Solve CRM and 2,700+ other apps remarkably fast.

Trigger workflow on
New Contact Tagged (Instant) from the Solve CRM API
Next, do this
Get Page Lead with the Unbounce API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Solve CRM trigger and Unbounce action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Contact Tagged (Instant) trigger
    1. Connect your Solve CRM account
    2. Select a Category
  3. Configure the Get Page Lead action
    1. Connect your Unbounce account
    2. Select a Page Id
    3. Select a Lead Id
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when the specified tag is added to a contact. [See the docs here](https://solve360.com/api/webhook-management/)
Version:0.0.1
Key:solve_crm-new-contact-tagged

Solve CRM Overview

The Solve CRM API offers a variety of endpoints to manage customer relationships and sales processes programmatically. It enables users to create, read, update, and delete customer data, manage projects, track email communication, and automate workflows involving contacts and companies. Pipedream harnesses this power, allowing you to connect Solve CRM with a myriad of other apps and services to streamline sales pipelines, enhance customer engagement, and automate routine tasks.

Trigger Code

import common from "../common/base.mjs";

export default {
  ...common,
  key: "solve_crm-new-contact-tagged",
  name: "New Contact Tagged (Instant)",
  description: "Emit new event when the specified tag is added to a contact. [See the docs here](https://solve360.com/api/webhook-management/)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    ...common.props,
    category: {
      propDefinition: [
        common.props.solveCrm,
        "category",
      ],
    },
  },
  methods: {
    ...common.methods,
    async getHistoricalEvents(limit) {
      return this.solveCrm.listContacts({
        params: {
          limit,
          sortdir: "DESC",
          sortfield: "updated",
          filtermode: "category",
          filtervalue: this.category,
        },
      });
    },
    getEventParams() {
      return {
        event: "items.categorize",
        constrainttype: "contact",
        title: "Pipedream New Tagged Contact",
      };
    },
    isRelevant(body) {
      const category = body.changes.categories[0].id;
      return category == this.category;
    },
    generateMeta(body) {
      const ts = new Date(body.occured);
      return {
        id: `${body.objectid}-${ts.getTime()}`,
        summary: `New tagged contact with ID ${body.objectid}`,
        ts: ts.getTime(),
      };
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Solve CRMsolveCrmappThis component uses the Solve CRM app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
CategorycategorystringSelect a value from the drop down menu.

Trigger Authentication

Solve CRM uses API keys for authentication. When you connect your Solve CRM account, Pipedream securely stores the keys so you can easily authenticate to Solve CRM APIs in both code and no-code steps.

You can get your API Token under Solve menu > My Account > API Token.
For email, use the address asssociated to your Solve CRM account.

About Solve CRM

Solve is a productivity CRM for teams to manage customer workflows. Simplify all record keeping, scheduling, communication and information sharing - especially when mobile.

Action

Description:Get info of single Lead. [See the documentation](https://developer.unbounce.com/api_reference/#id_pages__page_id__leads__lead_id_)
Version:0.0.1
Key:unbounce-get-page-lead

Unbounce Overview

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.

Action Code

import unbounce from "../../unbounce.app.mjs";

export default {
  key: "unbounce-get-page-lead",
  name: "Get Page Lead",
  version: "0.0.1",
  description: "Get info of single Lead. [See the documentation](https://developer.unbounce.com/api_reference/#id_pages__page_id__leads__lead_id_)",
  type: "action",
  props: {
    unbounce,
    pageId: {
      propDefinition: [
        unbounce,
        "pageId",
      ],
    },
    leadId: {
      propDefinition: [
        unbounce,
        "leadId",
        ({ pageId }) => ({
          pageId,
        }),
      ],
    },
  },
  async run({ $ }) {
    const {
      unbounce,
      pageId,
      leadId,
    } = this;

    const response = unbounce.getLead({
      pageId,
      leadId,
    });

    $.export("$summary", `The Lead with Id: ${leadId} successfully fetched!`);
    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
UnbounceunbounceappThis component uses the Unbounce app.
Page IdpageIdstringSelect a value from the drop down menu.
Lead IdleadIdstringSelect a value from the drop down menu.

Action Authentication

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

About 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.

More Ways to Connect Unbounce + Solve CRM

List Page Leads with Unbounce API on New Company Created (Instant) from Solve CRM API
Solve CRM + Unbounce
 
Try it
List Page Leads with Unbounce API on New Contact Created (Instant) from Solve CRM API
Solve CRM + Unbounce
 
Try it
List Page Leads with Unbounce API on New Contact Tagged (Instant) from Solve CRM API
Solve CRM + Unbounce
 
Try it
List Page Leads with Unbounce API on New User Created from Solve CRM API
Solve CRM + Unbounce
 
Try it
Get Page Lead with Unbounce API on New Company Created (Instant) from Solve CRM API
Solve CRM + Unbounce
 
Try it
New Company Created (Instant) from the Solve CRM API

Emit new event for each new company created. See the docs here

 
Try it
New Contact Created (Instant) from the Solve CRM API

Emit new event for each new contact created. See the docs here

 
Try it
New Contact Tagged (Instant) from the Solve CRM API

Emit new event when the specified tag is added to a contact. See the docs here

 
Try it
New User Created from the Solve CRM API

Emit new event for each new user created. See the docs here

 
Try it
New Form Submission Received from the Unbounce API

Emit new event when a new form submit is received.

 
Try it
Create Contact with the Solve CRM API

Create a new contact. See the docs here

 
Try it
Get Page Lead with the Unbounce API

Get info of single Lead. See the documentation

 
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

Explore Other Apps

1
-
24
of
2,700+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.