Automate tax compliance worldwide with one click. Quaderno handles sales tax so savvy entrepreneurs don’t have to.
Emit new event when a new invoice is generated in Quaderno. See the Documentation.
Emit new event when a new Calendar event is created
Emit new event when a payment is successfully processed in Quaderno. See the Documentation.
Emit new event when a Calendar event is updated
Emit new event when a Calendar event is upcoming, this source is using reminderMinutesBeforeStart
property of the event to determine the time it should emit.
Create an event in the user's default calendar. See the documentation
Delete an event in the user's default calendar. See the documentation
Modify an existing invoice's details in Quaderno. See the Documentation.
The Quaderno API provides robust capabilities for handling sales tax, VAT, and GST compliance. It allows you to automate tax calculations, create and send invoices, and manage transactions and reports with ease. Integrating the Quaderno API on Pipedream opens up opportunities to streamline your finance operations by connecting to various other services like CRMs, payment gateways, and e-commerce platforms, all while leveraging Pipedream's serverless platform to execute custom logic without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
quaderno: {
type: "app",
app: "quaderno",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.quaderno.$auth.domain}/api/authorization`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.quaderno.$auth.api_key}`,
password: ``,
},
})
},
})
The Microsoft Outlook Calendar API provides programmatic access to a user's calendar events, allowing for the creation, retrieval, update, and deletion of events within Outlook calendars. With Pipedream, you can integrate these calendar operations into workflows that automate tasks involving scheduling, event management, and coordination with other services. Whether it's triggering actions when new events are created, syncing calendar events with other scheduling tools, or managing attendees, Pipedream's serverless platform enables you to build custom automations with minimal overhead.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_outlook_calendar: {
type: "app",
app: "microsoft_outlook_calendar",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_outlook_calendar.$auth.oauth_access_token}`,
},
})
},
})