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 Formatting API

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

[Data] Convert JSON to String with Formatting API on New Contact Created (Instant) from Ontraport API
Ontraport + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Form Submitted (Instant) from Ontraport API
Ontraport + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Product Purchased (Instant) from Ontraport API
Ontraport + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Tag Added (Instant) from Ontraport API
Ontraport + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Transaction Created With Product (Instant) from Ontraport API
Ontraport + Formatting
 
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
[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
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
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 Formatting

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