with FacturaDirecta and LimoExpress?
Emit new event when a customer creates a new limo booking. See the documentation
Creates a new client with specified details. See the documentation
Creates a new limo booking with specified details. See the documentation
The FacturaDirecta API enables you to automate and integrate your billing and accounting systems, thereby streamlining financial operations within your business. Through Pipedream, you can trigger workflows on new events in FacturaDirecta, manipulate and analyze invoice data, synchronize contacts, and manage products. This can save time, reduce errors, and provide real-time financial insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
facturadirecta: {
type: "app",
app: "facturadirecta",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.facturadirecta.$auth.account_name}.facturadirecta.com/api/products.xml`,
auth: {
username: `${this.facturadirecta.$auth.api_token}`,
password: `x`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
limoexpress: {
type: "app",
app: "limoexpress",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.limoexpress.me/api/integration/users`,
headers: {
Authorization: `Bearer ${this.limoexpress.$auth.api_key}`,
"accept": `*/*`,
},
params: {
page: `1`,
per_page: `10`,
},
})
},
})