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.
Emit new event when a new contact is created. See the docs.
Emit new event when a new form is submitted. See the docs.
Emit new event when a product is purchased. See the docs.
Emit new event when a transaction is created with a product. See the docs.
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:
Examples of Applications You Can Build Using the Ontraport API:
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})