CallPage

We are the #1 tool to generate more sales calls & leads from your website.

Integrate the CallPage API with the Emailoctopus API

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

Create List with Emailoctopus API on New Call Event from CallPage API
CallPage + Emailoctopus
 
Try it
Add Subscribers To List with Emailoctopus API on New Call Event from CallPage API
CallPage + Emailoctopus
 
Try it
Create SMS with CallPage API on New List Contact from Emailoctopus API
Emailoctopus + CallPage
 
Try it
Create SMS with CallPage API on New Subscriber from Emailoctopus API
Emailoctopus + CallPage
 
Try it
Create SMS with CallPage API on New Subscriber unsubscribed event from Emailoctopus API
Emailoctopus + CallPage
 
Try it
New Call Event from the CallPage API

Emit new event when there is a new call event.

 
Try it
New List Contact from the Emailoctopus API

Emit new event each time a contact is added to a list.

 
Try it
New Subscriber from the Emailoctopus API

Emit new event when a new subscriber created.

 
Try it
New Subscriber unsubscribed event from the Emailoctopus API

Emit new event when a subscriber unsubscribed.

 
Try it
Create SMS with the CallPage API

Creates a new SMS in CallPage. See the documentation

 
Try it
Add Subscribers To List with the Emailoctopus API

Add subscribers to a list, See the docs here

 
Try it
Create List with the Emailoctopus API

Create a list, See the docs here

 
Try it

Overview of CallPage

The CallPage API enables automations centered around phone calls and lead management. Integrating this API with Pipedream allows you to create, update, and track calls, as well as manage users and leads. With Pipedream's serverless architecture, you can easily connect CallPage to other apps, triggering complex workflows from CallPage events or performing actions in CallPage in response to external triggers.

Connect CallPage

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: {
    callpage: {
      type: "app",
      app: "callpage",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://core.callpage.io/api/v1/external/users/all`,
      headers: {
        "Authorization": `${this.callpage.$auth.api_key}`,
        "Accept": `application/json`,
      },
    })
  },
})

Overview of Emailoctopus

EmailOctopus is a cost-effective email marketing tool that lets you send emails and manage subscribers with ease. Using the EmailOctopus API on Pipedream, you can automate subscriber management, trigger email campaigns based on various actions, or synchronize your marketing efforts across different platforms. The API's capabilities facilitate a wide range of marketing workflows, from auto-updating mailing lists to sending targeted emails when specific conditions are met.

Connect Emailoctopus

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    emailoctopus: {
      type: "app",
      app: "emailoctopus",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://emailoctopus.com/api/1.5/lists`,
      params: {
        api_key: `${this.emailoctopus.$auth.api_key}`,
      },
    })
  },
})