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

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

Send Message (Advanced) with Discord API on New Contact Created (Instant) from Ontraport API
Ontraport + Discord
 
Try it
Send Message (Advanced) with Discord API on New Form Submitted (Instant) from Ontraport API
Ontraport + Discord
 
Try it
Send Message (Advanced) with Discord API on Product Purchased (Instant) from Ontraport API
Ontraport + Discord
 
Try it
Send Message (Advanced) with Discord API on Tag Added (Instant) from Ontraport API
Ontraport + Discord
 
Try it
Send Message (Advanced) with Discord API on Transaction Created With Product (Instant) from Ontraport API
Ontraport + Discord
 
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 Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

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

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

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
Product Purchased (Instant) from the Ontraport API

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

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
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}`,
      },
    })
  },
})

Overview of Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

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: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})