with Billbee and Lexoffice?
Add a shipment to an existing order. See the documentation
Create an invoice for an existing order. See the documentation
Retrieve a specific order by its ID from Billbee. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
billbee: {
type: "app",
app: "billbee",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.billbee.io/api/v1/shopaccounts`,
headers: {
"accept": `application/json`,
"x-billbee-api-key": `${this.billbee.$auth.api_key}`,
},
auth: {
username: `${this.billbee.$auth.username}`,
password: `${this.billbee.$auth.api_password}`,
},
params: {
page: `1`,
pageSize: `10`,
},
})
},
})
The Lexoffice API provides a suite of accounting tools that can automate various financial tasks for businesses using Pipedream. With this API, you can create invoices, manage contacts, track expenses, and handle accounting documents programmatically. Pipedream's serverless platform enables you to integrate Lexoffice with hundreds of other apps, allowing for streamlined workflows that can trigger actions in Lexoffice or respond to events from Lexoffice in real-time.
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`,
},
})
},
})