VBOUT

VBOUT offers several marketing tools into one powerful platform: Social media, landing pages, lead management, email marketing, automation and analytics.

Integrate the VBOUT API with the Telegram Bot API

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

Add Contact To List By Email with VBOUT API on New Bot Command Received (Instant) from Telegram Bot API
Telegram Bot + VBOUT
 
Try it
Add Contact To List By Email with VBOUT API on New Channel Updates (Instant) from Telegram Bot API
Telegram Bot + VBOUT
 
Try it
Add Contact To List By Email with VBOUT API on New Message Updates (Instant) from Telegram Bot API
Telegram Bot + VBOUT
 
Try it
Add Contact To List By Email with VBOUT API on New Updates (Instant) from Telegram Bot API
Telegram Bot + VBOUT
 
Try it
Add Contact To List with VBOUT API on New Bot Command Received (Instant) from Telegram Bot API
Telegram Bot + VBOUT
 
Try it
New Contact from the VBOUT API

Emit new event for each new contact. See docs here

 
Try it
New Contact Property Change from the VBOUT API

Emit new event for each new property changed in a specific contact. See docs here

 
Try it
New Email Campaign from the VBOUT API

Emit new event for each new email campaign. See docs here

 
Try it
New Social Media Message from the VBOUT API

Emit new event for each new social media message. See docs here

 
Try it
New Bot Command Received (Instant) from the Telegram Bot API

Emit new event each time a Telegram Bot command is received.

 
Try it
Add Contact To List with the VBOUT API

This action move a contact to a specific list. See the docs here

 
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
Add Contact To List By Email with the VBOUT API

This action add a specific list to a contact. All emails having the same email text available in the provided list will be updated if exists See the docs here

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
Try it
Add Custom Event To Contact with the VBOUT API

This action add a custom activity to the contact. See the docs here

 
Try it

Overview of VBOUT

The VBOUT API unlocks the potential to automate your marketing stack, leveraging Pipedream's capabilities for seamless integrations with other services. With VBOUT, you can manage contacts, automate email campaigns, track user actions, and analyze performance data. Pipedream enhances this by allowing you to capture events in real-time, process data with serverless code, and connect with countless apps to extend your marketing automation workflows.

Connect VBOUT

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    vbout: {
      type: "app",
      app: "vbout",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      method: "post",
      url: `https://api.vbout.com/1/app/me.json`,
      headers: {
        "Content-Type": `application/json`,
      },
      params: {
        key: `${this.vbout.$auth.api_key}`,
      },
    })
  },
})

Overview of Telegram Bot

The Telegram Bot API allows you to build bots that can interact with users on the Telegram platform. Using Pipedream, you can automate messaging, handle commands, and trigger actions based on conversations or alerts. Pipedream's serverless execution model enables you to create complex workflows involving Telegram messages without managing any infrastructure. With Pipedream's integration, you can process inbound messages, send outbound notifications, and connect the Telegram Bot API with numerous other services to create powerful automation solutions.

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