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 payment is successfully processed in Quaderno. See the Documentation.
Emit new event when a new Contact is created
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 API on Pipedream allows you to automate email-related tasks, manage calendars, and handle contacts effortlessly. With the API, you can trigger workflows on new emails, send emails programmatically, and synchronize calendars across platforms, among other functions. Pipedream's serverless platform facilitates the connection between Outlook and a myriad of other apps for efficient automation workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_outlook: {
type: "app",
app: "microsoft_outlook",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_outlook.$auth.oauth_access_token}`,
},
})
},
})