Plivo

SMS API and Voice API platform

Integrate the Plivo API with the Go API

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

Run Go Code with Go API on New Completed Call from Plivo API
Plivo + Go
 
Try it
Run Go Code with Go API on New SMS Received (Instant) from Plivo API
Plivo + Go
 
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
Make A Call with the Plivo API

Makes a call. See the docs.

 
Try it
Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
Try it
Plays An Audio with the Plivo API

Plays audio on a call. See the docs.

 
Try it
Send MMS with the Plivo API

Sends an MMS message to a phone number. See the docs.

 
Try it
Send SMS with the Plivo API

Sends an SMS message to a phone number. 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}`,
      },
    })
  },
})

Connect Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}