Limitless enterprise infrastructure for live data queries, analytics, insights, and retention. No data schema requirements. Index-free. Blazing fast. The technology of choice for engineering, DevOps, IT, and security teams to unlock the power of data.
Go to siteThe DataSet API enables you to manage and analyze large datasets. With Pipedream's integration, you can automate data ingestion, transformation, and analysis, create serverless workflows that respond to data events, and connect with other apps to enrich and utilize your datasets. Utilize Pipedream's serverless platform to trigger workflows, perform actions based on DataSet events, and orchestrate complex data processes with minimal setup.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dataset: {
type: "app",
app: "dataset",
}
},
async run({steps, $}) {
const data = {
"token": `${this.dataset.$auth.access_key}`,
}
return await axios($, {
method: "post",
url: `https://app.scalyr.com/api/listUsers`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
DataSet uses API keys for authentication. When you connect your DataSet account, Pipedream securely stores the keys so you can easily authenticate to DataSet APIs in both code and no-code steps.
To retrieve your API Access Keys