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 Telegram Bot API

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

Create Chat Invite Link with Telegram Bot API on New Contact Created (Instant) from Ontraport API
Ontraport + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Form Submitted (Instant) from Ontraport API
Ontraport + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on Product Purchased (Instant) from Ontraport API
Ontraport + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on Tag Added (Instant) from Ontraport API
Ontraport + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on Transaction Created With Product (Instant) from Ontraport API
Ontraport + Telegram Bot
 
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
Create Chat Invite Link with the Telegram Bot API

Create an additional invite link for a chat, See the docs for more information

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
Try it
Edit a Media Message with the Telegram Bot API

Edits photo or video messages. See the docs for more information

 
Try it
Edit a Text Message with the Telegram Bot API

Edits text or game messages. See the docs for more information

 
Try it
Export Chat Invite Link with the Telegram Bot API

Generate a new primary invite link for a chat, See the docs for more information

 
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 Telegram Bot

With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:

  • Sending and receiving messages
  • Social networking
  • Content management
  • File sharing
  • Location sharing
  • Bot administration
  • And more!

Connect Telegram Bot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    telegram_bot_api: {
      type: "app",
      app: "telegram_bot_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
    })
  },
})