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.
Go to siteThe DataScope API provides data that can be used to build a variety of applications. Here are some examples of what you can build using the DataScope API:
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}`,
},
})
},
})
DataScope uses API keys for authentication. When you connect your DataScope account, Pipedream securely stores the keys so you can easily authenticate to DataScope APIs in both code and no-code steps.
In order to connect Datascope using the API, go to the Integrations screen in the developer portal, then choose the API Key tab to generate or retrieve your API key.