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

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

[Data] Convert JSON to String with Formatting API on New Contact from VBOUT API
VBOUT + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Contact Property Change from VBOUT API
VBOUT + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Email Campaign from VBOUT API
VBOUT + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Social Media Message from VBOUT API
VBOUT + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Contact from VBOUT API
VBOUT + Formatting
 
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
Add Contact To List with the VBOUT API

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

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
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
[Data] Parse JSON with the Formatting API

Parse a JSON string

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})