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 siteimport { 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`,
},
})
},
})
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.