LessAccounting

Small business bookkeeping made super easy.

Go to site
Explore
/
Apps
/
LessAccounting

LessAccounting API Integrations

Build and run workflows using the LessAccounting API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    lessaccounting: {
      type: "app",
      app: "lessaccounting",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.lessaccounting.$auth.business}.lessaccounting.com/businesses/get_businesses.json`,
      headers: {
        "Accept": `application/json`,
      },
      auth: {
        username: `${this.lessaccounting.$auth.email}`,
        password: `${this.lessaccounting.$auth.password}`,
      },
      params: {
        api_key: `${this.lessaccounting.$auth.api_key}`,
      },
    })
  },
})

Authentication

LessAccounting uses API keys for authentication. When you connect your LessAccounting account, Pipedream securely stores the keys so you can easily authenticate to LessAccounting APIs in both code and no-code steps.

To retrieve your API Keys,

  • Navigate to your LessAccounting account and sign in
  • Go to “Settings” > “API Keys”

Your business is 1234 if your LessAccounting dashboard URL is https://1234.lessaccounting.com/

LessAccounting requires their users enter their LessAccounting email and password in order to connect to their API. For more info, refer to LessAccounting’s documentation.

Pipedream recommends using a strong and unique password for your LessAccounting account.