Lexoffice

Lexoffice is the online accounting software from Lexware. Regardless of whether you are writing an invoice or making an offer. Access to your numbers from anywhere, web-based and via app.

Go to site
Explore
/
Apps
/
Lexoffice

Lexoffice API Integrations

Build and run workflows using the Lexoffice 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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    lexoffice: {
      type: "app",
      app: "lexoffice",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.lexoffice.io/v1/contacts`,
      headers: {
        Authorization: `Bearer ${this.lexoffice.$auth.api_key}`,
        "Accept": `application/json`,
      },
    })
  },
})

Authentication

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

You can get your API Key at the Lexoffice Public API page.