VerifyBee

VerifyBee is a fast and accurate customer verification service written on top of some of the must cutting edge technologies.

Integrate the VerifyBee API with the Formatting API

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

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of VerifyBee

VerifyBee is a powerful tool designed for validating emails and phone numbers, ensuring that your contact lists are accurate and up-to-date. By integrating VerifyBee with Pipedream, you can automate the process of cleaning your contact data across various platforms, trigger communications with confidence, and maintain the integrity of your CRM or customer databases. The API allows developers to check the validity of emails and phone numbers, which can be crucial for reducing bounce rates and improving communication efficiency.

Connect VerifyBee

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    verifybee: {
      type: "app",
      app: "verifybee",
    }
  },
  async run({steps, $}) {
    const data = {
      "email": `marc@salesforce.com`,
    }
    return await axios($, {
      method: "post",
      url: `https://app.verifybee.io/api/v1.3/verify/`,
      headers: {
        "Vb-Token": `${this.verifybee.$auth.api_key}`,
      },
      data,
    })
  },
})

Connect Formatting

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