Baremetrics

Integrate the Baremetrics API with the Formatting API

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

Create Customer with the Baremetrics API

Create a customer. See the documentation

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Create Plan with the Baremetrics API

Create a plan. See the documentation

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Create Subscription with the Baremetrics API

Subscribe a client to a plan. See the documentation

 
Try it

Overview of Baremetrics

The Baremetrics API offers granular data on your SaaS metrics, including MRR, ARR, LTV, and churn rates, directly accessible for analytics, reporting, and enhancing business intelligence. With Pipedream's integration capabilities, you can automate workflows that react to this data in real-time, syncing with other services for actions like customer engagement, financial forecasting, and trigger-based alerting.

Connect Baremetrics

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: {
    baremetrics: {
      type: "app",
      app: "baremetrics",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.baremetrics.com/v1/account`,
      headers: {
        Authorization: `Bearer ${this.baremetrics.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Formatting

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