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 Discord API

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

Add Contact To List By Email with VBOUT API on New Message (Instant) from Discord API
Discord + VBOUT
 
Try it
Add Contact To List with VBOUT API on New Message (Instant) from Discord API
Discord + VBOUT
 
Try it
Add Custom Event To Contact with VBOUT API on New Message (Instant) from Discord API
Discord + VBOUT
 
Try it
Create Email List with VBOUT API on New Message (Instant) from Discord API
Discord + VBOUT
 
Try it
Create Email Marketing Campaign with VBOUT API on New Message (Instant) from Discord API
Discord + VBOUT
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
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
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
Add Custom Event To Contact with the VBOUT API

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

 
Try it
Create Email List with the VBOUT API

This action creates a new list. See the docs here

 
Try it
Create Email Marketing Campaign with the VBOUT API

This action creates a new email marketing campaign. See the docs here

 
Try it

Overview of VBOUT

The VBOUT API provides an easy and powerful way for developers to integrate
their applications with the VBOUT marketing automation platform. With the VBOUT
API, developers can create custom integrations and applications to manage and
automate customer communications in the most effective way possible.

Here are just a few examples of what you can build with the VBOUT API:

  • Create lead management workflows to capture leads, qualify leads, and pass
    them onto other systems like Salesforce.
  • Automatically segment contacts and set up automated email campaigns based on
    their individual preferences.
  • Track the performance of your marketing activities and optimize campaigns for
    optimal results.
  • Create personalized emails that are tailored to individual customer
    interests.
  • Utilize our analytics capabilities to gain insights into customer behavior
    and uncover new opportunities to drive engagement and conversions.
  • Leverage A/B testing capabilities to find out what works best with your
    target audience.

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 Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

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: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})