Databox

Connect your data from any tool and track it from any device. No more logging into dozens of different tools to understand performance — now you and your team can easily connect your data, build and share reports, monitor trends, and discover insights.

Integrate the Databox API with the Filter API

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

Send Custom Data with the Databox API

Sends custom data. See docs here

 
Try it
Continue execution if a condition Is met with the Filter API

Continue workflow execution only if a condition is met

 
Try it
End execution if a condition is met with the Filter API

End workflow execution if a condition is met

 
Try it

Overview of Databox

You can use the Databox API to build a variety of applications, including:

  • A dashboard for tracking your business performance
  • A data visualization tool for exploring your data
  • A report builder for creating custom reports
  • An alerts system for monitoring your data in real-time
  • A data management tool for organizing your data

Connect Databox

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Databox from 'databox'

export default defineComponent({ 
  props: {
    databox: {
      type: "app",
      app: "databox",
    },
  },
  async run({steps, $}) {
    const client = new Databox({
      push_token: `${this.databox.$auth.token}`
    })
    return await new Promise((resolve) => client.metrics((metrics) => resolve(metrics)))
  }
})

Overview of Filter

The Filter API is a great way to build powerful workflows that can manipulate
and transform data. Here are some examples of what you can build using the
Filter API:

  • A workflow that transforms data from one format to another
  • A workflow that filters out data that does not meet certain criteria
  • A workflow that sorts data in a specific order
  • A workflow that calculates statistics or aggregates data
  • A workflow that combines data from multiple sources

Connect Filter

1
2
3
4
5
6
7
8
9
10
export default defineComponent({
  async run({ steps, $ }) {
    let condition = false
    if (condition == false) {
      $.flow.exit("Ending workflow early because the condition is false")
    } else {
        $.export("$summary", "Continuing workflow, since condition for ending was not met.")
    }
  },
})