DataScope

DataScope is the ideal tool to get rid of paperwork, save time and collect data efficiently from the field. The platform allows your team to answer personalized mobile forms (even offline), from their phones or tablets.

Integrate the DataScope API with the Formatting API

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

DataScope is a versatile API for data collection and management, ideal for streamlining workflows that involve forms, surveys, or data entry. With DataScope, you can automate the consolidation of data gathered from various sources, analyze submissions in real-time, and trigger actions based on incoming data. It’s a powerhouse for anyone looking to digitize and automate paper-based processes, conduct field research, or collect structured data on the go.

Connect DataScope

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: {
    datascope: {
      type: "app",
      app: "datascope",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.mydatascope.com/api/external/answers`,
      headers: {
        "Authorization": `${this.datascope.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

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