Plivo

SMS API and Voice API platform

Integrate the Plivo API with the Telegram Bot API

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

Create Chat Invite Link with Telegram Bot API on New Completed Call from Plivo API
Plivo + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New SMS Received (Instant) from Plivo API
Plivo + Telegram Bot
 
Try it
Delete a Message with Telegram Bot API on New Completed Call from Plivo API
Plivo + Telegram Bot
 
Try it
Delete a Message with Telegram Bot API on New SMS Received (Instant) from Plivo API
Plivo + Telegram Bot
 
Try it
Edit a Media Message with Telegram Bot API on New Completed Call from Plivo API
Plivo + Telegram Bot
 
Try it
New Completed Call from the Plivo API

Emit new event when a call is completed. See the docs.

 
Try it
New SMS Received (Instant) from the Plivo API

Emit new event when a new SMS is received. See the docs.

 
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
New Channel Updates (Instant) from the Telegram Bot API

Emit new event each time a channel post is created or updated.

 
Try it
New Message Updates (Instant) from the Telegram Bot API

Emit new event each time a Telegram message is created or updated.

 
Try it
Make A Call with the Plivo API

Makes a call. 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
Plays An Audio with the Plivo API

Plays audio on a call. See the docs.

 
Try it

Overview of Plivo

The Plivo API provides a powerful platform for developers to create powerful and innovative telecommunications applications. With the API, developers can build anything from a simple IVR to voice bots and SIP Trunks. Whether you want to create a cloud-based VoIP solution or a custom PBX, the Plivo API makes it possible.

Some of the top applications that you can build with the Plivo API are:

  • IVR (Interative Voice Response): Create a voice interface for customers to access information on demand.
  • Voice Bots: Build AI-powered voice bots to interact with users on automated calls.
  • SIP Trunks: Create virtual telephone lines to connect with existing PBX systems.
  • Cloud Telephony Platform: Build a cloud-based VoIP solution for use with web and mobile apps.
  • Event-Driven Telephony: Create powerful apps that respond to events on the call.
  • Multi-channel Messaging: Send and receive text messages, voice broadcasts, and other multimedia messages.
  • Call Analytics and Recording: Monitor the performance of your calls and record conversations for compliant purposes.
  • Call Flow Builder: Design custom call flows using an easy-to-use drag-and-drop interface.
  • Number Management: Manage multiple phone numbers and toll-free numbers across a range of countries.

Connect Plivo

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: {
    plivo: {
      type: "app",
      app: "plivo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.plivo.com/v1/Account/${this.plivo.$auth.auth_id}/Message/`,
      auth: {
        username: `${this.plivo.$auth.auth_id}`,
        password: `${this.plivo.$auth.auth_token}`,
      },
    })
  },
})

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