Data247

A Data Management Platform for all of your data needs.

Integrate the Data247 API with the Formatting API

Setup the Data247 API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Data247 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 Data247

Data247 is a powerful service that provides real-time data such as phone carrier lookup, email to SMS gateway, text/SMS verification, and append information (e.g., appending carrier data to phone numbers). By leveraging Data247 with Pipedream, you can automate various data enrichment processes, validate customer contact details, or integrate enhanced data insights into your business workflows. This empowers you to maintain data accuracy, streamline communication strategies, and customize user experiences based on rich data sets.

Connect Data247

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

Connect Formatting

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