Karbon is a collaborative practice management platform for accounting firms to manage workflows, communicate with teams and deliver exceptional client work.
Go to siteUsing the Karbon API, you can build a variety of applications and integrations, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
karbon: {
type: "app",
app: "karbon",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.karbonhq.com/v3/Users`,
headers: {
Authorization: `Bearer ${this.karbon.$auth.application_access_key}`,
"AccessKey": `${this.karbon.$auth.tenant_access_key}`,
"Accept": `application/json`,
},
})
},
})
Karbon uses API keys for authentication. When you connect your Karbon account, Pipedream securely stores the keys so you can easily authenticate to Karbon APIs in both code and no-code steps.
Your Application Access Key is sent to your email when you request it through Karbon support
To retrieve your API Tenant Access Key,