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.
Go to siteThe 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}`,
},
})
},
})
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.
Ontraport uses API keys for authentication. When you connect your Ontraport account, Pipedream securely stores the keys so you can easily authenticate to Ontraport APIs in both code and no-code steps.
You can find your API Key and App ID in your Administration settings.