Ontraport

Ontraport is a unified and all-in-one CRM and marketing automation platform designed to help manage your entire marketing workflow, from bringing in new visitors all the way to making sure they feel welcome as customers.

Integrate the Ontraport API with the Node API

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

Run Node Code with Node API on New Contact Created (Instant) from Ontraport API
Ontraport + Node
 
Try it
Run Node Code with Node API on New Form Submitted (Instant) from Ontraport API
Ontraport + Node
 
Try it
Run Node Code with Node API on Product Purchased (Instant) from Ontraport API
Ontraport + Node
 
Try it
Run Node Code with Node API on Tag Added (Instant) from Ontraport API
Ontraport + Node
 
Try it
Run Node Code with Node API on Transaction Created With Product (Instant) from Ontraport API
Ontraport + Node
 
Try it
New Contact Created (Instant) from the Ontraport API

Emit new event when a new contact is created. See the docs.

 
Try it
New Form Submitted (Instant) from the Ontraport API

Emit new event when a new form is submitted. See the docs.

 
Try it
Product Purchased (Instant) from the Ontraport API

Emit new event when a product is purchased. See the docs.

 
Try it
Tag Added (Instant) from the Ontraport API

Emit new event when a tag is added. See the docs.

 
Try it
Transaction Created With Product (Instant) from the Ontraport API

Emit new event when a transaction is created with a product. See the docs.

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it

Overview of Ontraport

The Ontraport API enables developers to create powerful applications by
integrating Ontraport’s suite of CRM and marketing automation tools. It allows
developers to access information and control most aspects of the Ontraport
platform, such as contacts, campaigns, products, orders, and more. With the
power of the Ontraport API, developers can create applications that can:

  • Automate contact and customer segmentation
  • Create email marketing campaigns and send automated emails
  • Generate custom reports
  • Update customer information
  • Create and manage accounts, users, and access
  • Capture leads and process payments
  • Track customer interactions
  • Monitor leads and sales funnels

Examples of Applications You Can Build Using the Ontraport API:

  • Customer Relationship Management (CRM) solutions
  • Online marketing solutions
  • eCommerce solutions
  • Lead generation solutions
  • Automated sales tracking solutions
  • Email marketing solutions
  • Affiliate management solutions
  • Reporting solutions

Connect Ontraport

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: {
    ontraport: {
      type: "app",
      app: "ontraport",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.ontraport.com/1/Contacts`,
      headers: {
        "Api-Key": `${this.ontraport.$auth.api_key}`,
        "Api-Appid": `${this.ontraport.$auth.api_appid}`,
      },
    })
  },
})

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.