Baremetrics provides an API that allows developers to interact with the Baremetrics platform in order to build integrations, automate tasks, and track data. Here are some examples of what you can build with the Baremetrics API:
Integrations with other business platforms (e.g. CRM, accounting, ecommerce)
Automated tasks such as fetching data or generating reports
Tracking data such as customer acquisition or churn
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}`,
},
})
},
})
Baremetrics uses OAuth authentication. When you connect your Baremetrics account, Pipedream will open a popup window where you can sign into Baremetrics and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Baremetrics API.
Pipedream requests the following authorization scopes when you connect your account:
read
write
GET
https://app.baremetrics.com/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://app.baremetrics.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}