What do you want to automate

with Baremetrics and Unleashed Software?

Prompt, edit and deploy AI agents that connect to Baremetrics, Unleashed Software and 2,800+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Create Customer with the Baremetrics API

Create a customer. See the documentation

 
Try it
Create Plan with the Baremetrics API

Create a plan. See the documentation

 
Try it
Create Subscription with the Baremetrics API

Subscribe a client to a plan. See the documentation

 
Try it
Update Customer with the Baremetrics API

Update a customer. See the documentation

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

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 Unleashed Software

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { axios } from "@pipedream/platform";
import crypto from "crypto";

export default defineComponent({
  props: {
    unleashed_software: {
      type: "app",
      app: "unleashed_software",
    }
  },
  async run({ steps, $ }) {
    const baseUrl = "https://api.unleashedsoftware.com";
    const resource = "Accounts";
    // The queryString is used in calculating signature, add your query string parameters 
    // e.g. for the Customers resource customerCode=FRANCK&includeObsolete=true
    // or just pass an empty string
    const queryString =  "";
    const uri = `${baseUrl}/${resource}${queryString ? `?${queryString}` : ""}`

    // Generate HMAC-SHA256 signature
    const signature = crypto
      .createHmac("sha256", this.unleashed_software.$auth.api_key)
      .update(queryString)
      .digest("base64")

    // Make the request
    return await axios($, {
      method: "GET",
      url: uri,
      headers: {
        "api-auth-id": this.unleashed_software.$auth.api_id,
        "api-auth-signature": signature,
        "Accept": "application/json",
        "Content-Type": "application/json; charset=utf-8",
      },
    });
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo